Commit c86cbfb9 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: epg dialog: fix base class hidden method

parent ec0ceb44
......@@ -73,7 +73,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
layout->addWidget( epg, 10 );
layout->addWidget( descBox );
CONNECT( epg, itemSelectionChanged( EPGItem *), this, showEvent( EPGItem *) );
CONNECT( epg, itemSelectionChanged( EPGItem *), this, displayEvent( EPGItem *) );
CONNECT( THEMIM->getIM(), epgChanged(), this, updateInfos() );
CONNECT( THEMIM, inputChanged( input_thread_t * ), this, updateInfos() );
......@@ -104,7 +104,7 @@ EpgDialog::~EpgDialog()
writeSettings( "EPGDialog" );
}
void EpgDialog::showEvent( EPGItem *epgItem )
void EpgDialog::displayEvent( EPGItem *epgItem )
{
if( !epgItem ) return;
......
......@@ -48,7 +48,7 @@ private:
friend class Singleton<EpgDialog>;
private slots:
void showEvent( EPGItem * );
void displayEvent( EPGItem * );
void updateInfos();
};
......
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