]> git.sesse.net Git - vlc/commitdiff
qt4: we need qtr() else we have encoding problems
authorChristophe Mutricy <xtophe@videolan.org>
Fri, 8 May 2009 10:44:31 +0000 (12:44 +0200)
committerChristophe Mutricy <xtophe@videolan.org>
Fri, 8 May 2009 10:44:31 +0000 (12:44 +0200)
modules/gui/qt4/dialogs/plugins.cpp

index 886bc708b9c35d10f3aec76a308e28bfad161244..e8fa2df9656934fba6e5be9bde63192cf71c0a90 100644 (file)
@@ -57,7 +57,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
     treePlugins->setColumnWidth( 0, 200 );
 
     QStringList headerNames;
-    headerNames << _("Name") << _("Capability" ) << _( "Score" );
+    headerNames << qtr("Name") << qtr("Capability" ) << qtr( "Score" );
     treePlugins->setHeaderLabels( headerNames );
 
     FillTree();
@@ -70,7 +70,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
     treePlugins->setSortingEnabled( true );
     treePlugins->sortByColumn( 1, Qt::AscendingOrder );
 
-    QLabel *label = new QLabel( _("&Search:"), this );
+    QLabel *label = new QLabel( qtr("&Search:"), this );
     edit = new SearchLineEdit( this );
     label->setBuddy( edit );