]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/help.cpp
Fix comment !
[vlc] / modules / gui / qt4 / dialogs / help.cpp
index 16c8221ef091a24202926f85b11cee5c5f6061e8..559e751b190cb404ff2e6934cffa0eae77205874 100644 (file)
@@ -262,10 +262,13 @@ void UpdateDialog::UpdateOrDownload()
 
         if( dest_dir != "" )
         {
+            /*HACK: Qt4 isn't able to change the way OS deals with directories
+              names. Windows doesn't add an ending separator so we might add it.
+             */
             #if defined( WIN32 ) || defined( UNDER_CE )
             dest_dir += DIR_SEP;
             #endif
-            msg_Dbg( p_intf, "Downloading to folder: %s", dest_dir );
+            msg_Dbg( p_intf, "Downloading to folder: %s", qtu( dest_dir ) );
             toggleVisible();
             update_Download( p_update, qtu( dest_dir ) );
         }