Commit 756cfca1 authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

Qt: seekpoints: don't use qtu() shorcut in this header

(cherry picked from commit 755c0cb307f82ce1602d255c0d882448fca02187)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 128abc7e
...@@ -36,7 +36,7 @@ public: ...@@ -36,7 +36,7 @@ public:
SeekPoint( seekpoint_t *seekpoint ) SeekPoint( seekpoint_t *seekpoint )
{ {
time = seekpoint->i_time_offset; time = seekpoint->i_time_offset;
name = qfu( seekpoint->psz_name ); name = QString::fromUtf8( seekpoint->psz_name );
}; };
int64_t time; int64_t time;
QString name; QString name;
......
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