From 5f4cb46d97beadbb4b4b4b144d0af0733c0a3729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Sat, 5 Dec 2015 13:08:15 +0100 Subject: [PATCH] qt4: epg: Fix inputChanged signal prototype --- 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 de5b238eb7..69932db344 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 ); -- GitLab