[vlc-devel] [PATCH] qt: fix compilation on Qt4

KO Myung-Hun komh78 at gmail.com
Mon Mar 13 07:17:33 CET 2017


QStringList::join( QChar ) was introduced in Qt 5.0.
---
 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 e1469baf58..25107b2cc5 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 )
-- 
2.11.0



More information about the vlc-devel mailing list