[vlc-commits] commit: Qt: fix missing translations (Jean-Baptiste Kempf )

git at videolan.org git at videolan.org
Tue Apr 27 01:19:55 CEST 2010


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Apr 27 01:19:36 2010 +0200| [5cf83d9c99fe2554b74124a11c2a1e7e1751c82b] | committer: Jean-Baptiste Kempf 

Qt: fix missing translations

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5cf83d9c99fe2554b74124a11c2a1e7e1751c82b
---

 modules/gui/qt4/components/playlist/selector.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/playlist/selector.cpp b/modules/gui/qt4/components/playlist/selector.cpp
index 25e92aa..e2881de 100644
--- a/modules/gui/qt4/components/playlist/selector.cpp
+++ b/modules/gui/qt4/components/playlist/selector.cpp
@@ -226,8 +226,8 @@ PLSelItem * PLSelector::addItem (
 
 PLSelItem * putSDData( PLSelItem* item, const char* name, const char* longname )
 {
-    item->treeItem()->setData( 0, NAME_ROLE, qfu( name ) );
-    item->treeItem()->setData( 0, LONGNAME_ROLE, qfu( longname ) );
+    item->treeItem()->setData( 0, NAME_ROLE, qtr( name ) );
+    item->treeItem()->setData( 0, LONGNAME_ROLE, qtr( longname ) );
     return item;
 }
 



More information about the vlc-commits mailing list