[vlc-commits] Qt: epg: fix update signal

Francois Cartegnie git at videolan.org
Fri Aug 15 11:38:55 CEST 2014


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Aug 15 18:30:32 2014 +0900| [1d0f949a8202aa34e8f7f7f7ac2992c9fdd602f2] | committer: Francois Cartegnie

Qt: epg: fix update signal

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

 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 bedd3da..bf2c1fb 100644
--- a/modules/gui/qt4/dialogs/epg.cpp
+++ b/modules/gui/qt4/dialogs/epg.cpp
@@ -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 );
 



More information about the vlc-commits mailing list