From: Karsten Ballüder Date: Sun, 2 Aug 1998 16:59:53 +0000 (+0000) Subject: added slash to path X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5787c2b9c2ed0bcb14bfde933c228f921c3a30c0 added slash to path git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index ae3f3087dc..ebbea030fb 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -112,7 +112,8 @@ wxString wxFileConfig::GetLocalDir() strDir = "."; } else - strDir = szHome; + strDir = szHome; + strDir << '/'; // a double slash is no problem, a missin one yes #else // Windows #ifdef __WIN32__ const char *szHome = getenv("HOMEDRIVE");