]> git.sesse.net Git - vlc/commitdiff
Qt: epg: fix update signal
authorFrancois Cartegnie <fcvlcdev@free.fr>
Fri, 15 Aug 2014 09:30:32 +0000 (18:30 +0900)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Fri, 15 Aug 2014 09:38:04 +0000 (18:38 +0900)
modules/gui/qt4/dialogs/epg.cpp

index bedd3dad1a806729b4aa1c48434ba9eab0b57a0a..bf2c1fbc3e38e8c91a1cc241f55e50af8731ef65 100644 (file)
@@ -75,7 +75,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( input_thread_t * ), this, updateInfos() );
+    CONNECT( THEMIM, inputChanged( ), this, updateInfos() );
 
     QDialogButtonBox *buttonsBox = new QDialogButtonBox( this );