vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Tue Apr 3 00:53:19 2012 +0200| [0fe06bc3f1cae8823f3a7baa012b1ff4e126a286] | committer: Jean-Baptiste Kempf
Qt: fix small error This was not correctly saving the last opened folder with some encoding > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0fe06bc3f1cae8823f3a7baa012b1ff4e126a286 --- modules/gui/qt4/dialogs_provider.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp index 45429cd..7b53a29 100644 --- a/modules/gui/qt4/dialogs_provider.cpp +++ b/modules/gui/qt4/dialogs_provider.cpp @@ -506,7 +506,7 @@ static void openDirectory( intf_thread_t *p_intf, bool pl, bool go ) if( dir.isEmpty() ) return; - p_intf->p_sys->filepath = qtu( dir ); + p_intf->p_sys->filepath = dir; const char *scheme = "directory"; if( dir.endsWith( "/VIDEO_TS", Qt::CaseInsensitive ) ) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
