added slash to path

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1998-08-02 16:59:53 +00:00
parent 47908e25f9
commit 5787c2b9c2

View File

@@ -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");