From: Francois Cartegnie Date: Fri, 1 Apr 2011 20:57:32 +0000 (+0200) Subject: Qt: epgwidget: use anon enum for indexes X-Git-Tag: 1.2.0-pre1~3261 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a791fc94a66889d974a9da972230251c3fe1d457;p=vlc Qt: epgwidget: use anon enum for indexes --- diff --git a/modules/gui/qt4/components/epg/EPGWidget.cpp b/modules/gui/qt4/components/epg/EPGWidget.cpp index d059de2b54..c3a8432302 100644 --- a/modules/gui/qt4/components/epg/EPGWidget.cpp +++ b/modules/gui/qt4/components/epg/EPGWidget.cpp @@ -37,6 +37,12 @@ #include #include +enum +{ + EPGVIEW_WIDGET = 0, + NOEPG_WIDGET = 1 +}; + EPGWidget::EPGWidget( QWidget *parent ) : QWidget( parent ) { b_input_type_known = false; @@ -58,11 +64,11 @@ EPGWidget::EPGWidget( QWidget *parent ) : QWidget( parent ) layout->addWidget( m_epgView, 1, 1 ); layout->setSpacing( 0 ); containerWidget->setLayout( layout ); - rootWidget->addWidget( containerWidget ); /* index 0 */ + rootWidget->insertWidget( EPGVIEW_WIDGET, containerWidget ); QLabel *noepgLabel = new QLabel( qtr("No EPG Data Available"), this ); noepgLabel->setAlignment( Qt::AlignCenter ); - rootWidget->addWidget( noepgLabel ); /* index 1 */ + rootWidget->insertWidget( NOEPG_WIDGET, noepgLabel ); rootWidget->setCurrentIndex( 1 ); layout = new QGridLayout( this ); @@ -125,7 +131,8 @@ void EPGWidget::updateEPG( input_item_t *p_input_item ) vlc_mutex_unlock( & p_input_item->lock ); /* toggle our widget view */ - rootWidget->setCurrentIndex( m_epgView->hasValidData() ? 0 : 1 ); + rootWidget->setCurrentIndex( + m_epgView->hasValidData() ? EPGVIEW_WIDGET : NOEPG_WIDGET ); // Update the global duration and start time. m_epgView->updateDuration();