Commit 5adb0bd2 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix previous commit and add a little comment.

parent 1595a7ef
...@@ -262,10 +262,12 @@ void UpdateDialog::UpdateOrDownload() ...@@ -262,10 +262,12 @@ void UpdateDialog::UpdateOrDownload()
if( dest_dir != "" ) if( dest_dir != "" )
{ {
/*HACK: Qt4 isn't able to change the way OS deals with diretories names.
Windows doesn't add an ending separtor so we might add it. */
#if defined( WIN32 ) || defined( UNDER_CE ) #if defined( WIN32 ) || defined( UNDER_CE )
dest_dir += DIR_SEP; dest_dir += DIR_SEP;
#endif #endif
msg_Dbg( p_intf, "Downloading to folder: %s", dest_dir ); msg_Dbg( p_intf, "Downloading to folder: %s", qtu( dest_dir ) );
toggleVisible(); toggleVisible();
update_Download( p_update, qtu( dest_dir ) ); update_Download( p_update, qtu( dest_dir ) );
} }
......
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