[vlc-commits] qt: fix compilation on Qt4

KO Myung-Hun git at videolan.org
Mon Mar 13 09:36:45 CET 2017


vlc | branch: master | KO Myung-Hun <komh78 at gmail.com> | Mon Mar 13 15:17:33 2017 +0900| [b226d557092146b96b87f764c0841c80f3706005] | committer: Hugo Beauzée-Luyssen

qt: fix compilation on Qt4

QStringList::join( QChar ) was introduced in Qt 5.0.

Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b226d557092146b96b87f764c0841c80f3706005
---

 modules/gui/qt/components/extended_panels.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/qt/components/extended_panels.cpp b/modules/gui/qt/components/extended_panels.cpp
index e1469ba..25107b2 100644
--- a/modules/gui/qt/components/extended_panels.cpp
+++ b/modules/gui/qt/components/extended_panels.cpp
@@ -262,7 +262,7 @@ static QString ChangeFiltersString( struct intf_thread_t *p_intf, const char *ps
 
     free( psz_chain );
 
-    return list.join( ':' );
+    return list.join( ":" );
 }
 
 static void ChangeAFiltersString( struct intf_thread_t *p_intf, const char *psz_name, bool b_add )



More information about the vlc-commits mailing list