From 5787c2b9c2ed0bcb14bfde933c228f921c3a30c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Sun, 2 Aug 1998 16:59:53 +0000 Subject: [PATCH] added slash to path git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fileconf.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); -- 2.50.0