[vlc-commits] Qt: save playlist: missing unicode conversion
Francois Cartegnie
git at videolan.org
Tue Jan 8 15:39:54 CET 2013
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Jan 8 15:38:55 2013 +0100| [fa31a2a05b928ce635dfdbf0acb219368046a3c8] | committer: Francois Cartegnie
Qt: save playlist: missing unicode conversion
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fa31a2a05b928ce635dfdbf0acb219368046a3c8
---
modules/gui/qt4/dialogs_provider.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp
index 3d47a06..2a15d5b 100644
--- a/modules/gui/qt4/dialogs_provider.cpp
+++ b/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;
More information about the vlc-commits
mailing list