[vlc-commits] commit: Revert "Qt: fix missing translations" (Christophe Mutricy )
git at videolan.org
git at videolan.org
Wed Apr 28 00:13:46 CEST 2010
vlc | branch: master | Christophe Mutricy <xtophe at videolan.org> | Tue Apr 27 22:38:06 2010 +0100| [11333c7750ecf066c6b3c3093b2e88243cb11545] | committer: Christophe Mutricy
Revert "Qt: fix missing translations"
This reverts commit 5cf83d9c99fe2554b74124a11c2a1e7e1751c82b.
It's nor displayed strings but passed to the core
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=11333c7750ecf066c6b3c3093b2e88243cb11545
---
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 e2881de..25e92aa 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, qtr( name ) );
- item->treeItem()->setData( 0, LONGNAME_ROLE, qtr( longname ) );
+ item->treeItem()->setData( 0, NAME_ROLE, qfu( name ) );
+ item->treeItem()->setData( 0, LONGNAME_ROLE, qfu( longname ) );
return item;
}
More information about the vlc-commits
mailing list