From: Jean-Baptiste Kempf Date: Sun, 27 Jul 2008 17:53:16 +0000 (-0700) Subject: Add a DIR_SEP to the download folder. X-Git-Tag: 0.9.0-test3~212 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=1595a7ef89f45c936857d3e12aff5f66cb2b0880;p=vlc Add a DIR_SEP to the download folder. Close #1776 --- diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp index 1b135bab2a..16c8221ef0 100644 --- a/modules/gui/qt4/dialogs/help.cpp +++ b/modules/gui/qt4/dialogs/help.cpp @@ -262,6 +262,10 @@ void UpdateDialog::UpdateOrDownload() if( dest_dir != "" ) { + #if defined( WIN32 ) || defined( UNDER_CE ) + dest_dir += DIR_SEP; + #endif + msg_Dbg( p_intf, "Downloading to folder: %s", dest_dir ); toggleVisible(); update_Download( p_update, qtu( dest_dir ) ); }