]> git.sesse.net Git - vlc/commitdiff
qt4_bookmarks: fix encoding.
authorRémi Duraffort <ivoire@videolan.org>
Sun, 22 Mar 2009 07:49:29 +0000 (08:49 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Sun, 22 Mar 2009 07:49:29 +0000 (08:49 +0100)
modules/gui/qt4/dialogs/bookmarks.cpp

index d114b97d351643339b18e812ce27288892dc8f84..8536da1cda167d4fa9b50660d8f008064477535b 100644 (file)
@@ -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);