[vlc-commits] qt4: epg: Fix inputChanged signal prototype

Hugo Beauzée-Luyssen git at videolan.org
Tue Dec 8 11:01:46 CET 2015


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Sat Dec  5 13:08:15 2015 +0100| [5f4cb46d97beadbb4b4b4b144d0af0733c0a3729] | committer: Hugo Beauzée-Luyssen

qt4: epg: Fix inputChanged signal prototype

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

 modules/gui/qt4/dialogs/epg.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/qt4/dialogs/epg.cpp b/modules/gui/qt4/dialogs/epg.cpp
index de5b238..69932db 100644
--- a/modules/gui/qt4/dialogs/epg.cpp
+++ b/modules/gui/qt4/dialogs/epg.cpp
@@ -77,7 +77,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
 
     CONNECT( epg, itemSelectionChanged( EPGItem *), this, displayEvent( EPGItem *) );
     CONNECT( THEMIM->getIM(), epgChanged(), this, updateInfos() );
-    CONNECT( THEMIM, inputChanged( ), this, updateInfos() );
+    CONNECT( THEMIM, inputChanged( bool ), this, updateInfos() );
 
     QDialogButtonBox *buttonsBox = new QDialogButtonBox( this );
 



More information about the vlc-commits mailing list