]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
compilation fixes for !wxUSE_FONTMAP
[wxWidgets.git] / src / common / filefn.cpp
index bfa2fe86635114366ad6deefa4cf125f5170daaa..fc22b03128b011fa8f68633451895c808a9401fc 100644 (file)
@@ -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