From a204e0b5da552017a4932b77d0b13b7c9d0bc23b Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 30 Dec 2001 12:31:03 +0000 Subject: [PATCH] Ehm... fixed my comment about DJGPP to say what I wanted it to say git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filefn.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index bfa2fe8663..fc22b03128 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1447,7 +1447,8 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz) #endif #ifdef __DJGPP__ - // VS: DJGPP is Unicodish and uses / instead of \ as path deliminer. We don't like that. + // VS: DJGPP is a strange mix of DOS and UNIX API and returns paths with + // / deliminers. We don't like that. for (wxChar *ch = buf; *ch; ch++) if (*ch == wxT('/')) *ch = wxT('\\'); #endif -- 2.50.0