Commit 5f4cb46d authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

qt4: epg: Fix inputChanged signal prototype

parent a9c9d3cf
...@@ -77,7 +77,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf ) ...@@ -77,7 +77,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
CONNECT( epg, itemSelectionChanged( EPGItem *), this, displayEvent( EPGItem *) ); CONNECT( epg, itemSelectionChanged( EPGItem *), this, displayEvent( EPGItem *) );
CONNECT( THEMIM->getIM(), epgChanged(), this, updateInfos() ); CONNECT( THEMIM->getIM(), epgChanged(), this, updateInfos() );
CONNECT( THEMIM, inputChanged( ), this, updateInfos() ); CONNECT( THEMIM, inputChanged( bool ), this, updateInfos() );
QDialogButtonBox *buttonsBox = new QDialogButtonBox( this ); QDialogButtonBox *buttonsBox = new QDialogButtonBox( this );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment