From 1595a7ef89f45c936857d3e12aff5f66cb2b0880 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sun, 27 Jul 2008 10:53:16 -0700 Subject: [PATCH 1/1] Add a DIR_SEP to the download folder. Close #1776 --- modules/gui/qt4/dialogs/help.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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 ) ); } -- 2.39.2