Commit fa31a2a0 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: save playlist: missing unicode conversion

parent c0332448
...@@ -621,7 +621,7 @@ void DialogsProvider::saveAPlaylist() ...@@ -621,7 +621,7 @@ void DialogsProvider::saveAPlaylist()
{ {
for( size_t i = 0; i < sizeof (types) / sizeof (types[0]); i++) for( size_t i = 0; i < sizeof (types) / sizeof (types[0]); i++)
{ {
if ( selected.startsWith( vlc_gettext( types[i].filter_name ) ) ) if ( selected.startsWith( qfu( vlc_gettext( types[i].filter_name ) ) ) )
{ {
psz_selected_module = types[i].module; psz_selected_module = types[i].module;
psz_last_playlist_ext = types[i].filter_patterns; psz_last_playlist_ext = types[i].filter_patterns;
......
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