Skip to content
Snippets Groups Projects
Commit c618ceaa authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

Qt: epg: qtr() instead of tr()

parent a5dcd1ee
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ EPGWidget::EPGWidget( QWidget *parent ) : QWidget( parent )
containerWidget->setLayout( layout );
rootWidget->addWidget( containerWidget ); /* index 0 */
QLabel *noepgLabel = new QLabel( tr("No EPG Data Available"), this );
QLabel *noepgLabel = new QLabel( qtr("No EPG Data Available"), this );
noepgLabel->setAlignment( Qt::AlignCenter );
rootWidget->addWidget( noepgLabel ); /* index 1 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment