[vlc-devel] commit: qt4_bookmarks: fix encoding. ( Rémi Duraffort )

git version control git at videolan.org
Sun Mar 22 08:49:52 CET 2009


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sun Mar 22 08:49:29 2009 +0100| [54c6d5f107d97b219f611039f11290df55720416] | committer: Rémi Duraffort 

qt4_bookmarks: fix encoding.

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

 modules/gui/qt4/dialogs/bookmarks.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/dialogs/bookmarks.cpp b/modules/gui/qt4/dialogs/bookmarks.cpp
index d114b97..8536da1 100644
--- a/modules/gui/qt4/dialogs/bookmarks.cpp
+++ b/modules/gui/qt4/dialogs/bookmarks.cpp
@@ -126,7 +126,7 @@ void BookmarksDialog::update()
     {
         // List with the differents elements of the row
         QStringList row;
-        row << QString( pp_bookmarks[i]->psz_name );
+        row << QString( qfu( pp_bookmarks[i]->psz_name ) );
         row << QString( "%1" ).arg( pp_bookmarks[i]->i_byte_offset );
         int total = pp_bookmarks[i]->i_time_offset/ 1000000;
         int hour = total / (60*60);




More information about the vlc-devel mailing list