vlc | branch: master | KO Myung-Hun <[email protected]> | 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 <[email protected]>

> 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 )

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to