Commit 54c6d5f1 authored by Rémi Duraffort's avatar Rémi Duraffort

qt4_bookmarks: fix encoding.

parent ab01238b
...@@ -126,7 +126,7 @@ void BookmarksDialog::update() ...@@ -126,7 +126,7 @@ void BookmarksDialog::update()
{ {
// List with the differents elements of the row // List with the differents elements of the row
QStringList 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 ); row << QString( "%1" ).arg( pp_bookmarks[i]->i_byte_offset );
int total = pp_bookmarks[i]->i_time_offset/ 1000000; int total = pp_bookmarks[i]->i_time_offset/ 1000000;
int hour = total / (60*60); int hour = total / (60*60);
......
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