Quellcode durchsuchen

Qt: save playlist: missing unicode conversion

Francois Cartegnie vor 12 Jahren
Ursprung
Commit
fa31a2a05b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      modules/gui/qt4/dialogs_provider.cpp

+ 1 - 1
modules/gui/qt4/dialogs_provider.cpp

@@ -621,7 +621,7 @@ void DialogsProvider::saveAPlaylist()
     {
         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_last_playlist_ext = types[i].filter_patterns;