Commit 43dd12e4 authored by Christophe Mutricy's avatar Christophe Mutricy

qt4: we need qtr() else we have encoding problems

parent 56fb673c
...@@ -57,7 +57,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -57,7 +57,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
treePlugins->setColumnWidth( 0, 200 ); treePlugins->setColumnWidth( 0, 200 );
QStringList headerNames; QStringList headerNames;
headerNames << _("Name") << _("Capability" ) << _( "Score" ); headerNames << qtr("Name") << qtr("Capability" ) << qtr( "Score" );
treePlugins->setHeaderLabels( headerNames ); treePlugins->setHeaderLabels( headerNames );
FillTree(); FillTree();
...@@ -70,7 +70,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -70,7 +70,7 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
treePlugins->setSortingEnabled( true ); treePlugins->setSortingEnabled( true );
treePlugins->sortByColumn( 1, Qt::AscendingOrder ); treePlugins->sortByColumn( 1, Qt::AscendingOrder );
QLabel *label = new QLabel( _("&Search:"), this ); QLabel *label = new QLabel( qtr("&Search:"), this );
edit = new SearchLineEdit( this ); edit = new SearchLineEdit( this );
label->setBuddy( edit ); label->setBuddy( edit );
......
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