Commit 1ff9b08f authored by Francois Cartegnie's avatar Francois Cartegnie Committed by Jean-Baptiste Kempf

Qt: seekpoints: assume chapter name is utf8

(cherry picked from commit 1b23d5cc)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e750da52
...@@ -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 = seekpoint->psz_name; name = qfu( 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