]> git.saurik.com Git - wxWidgets.git/commitdiff
Hmm, seems Borland also doesn't want wchar_t in fopen() and friends
authorOve Kaaven <ovek@arcticnet.no>
Mon, 19 Apr 1999 18:27:51 +0000 (18:27 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Mon, 19 Apr 1999 18:27:51 +0000 (18:27 +0000)
(correct me if I'm wrong?)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2240 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 36f6a3773e4eef19679d8abbf95b2854ddecd026..542bf06b12fd27f60ee5b8d9a2563c68bfac9c58 100644 (file)
@@ -237,7 +237,7 @@ WXDLLEXPORT_DATA(extern wxCSConv) wxConv_local;
 WXDLLEXPORT_DATA(extern wxMBConv *) wxConv_current;
 
 // filenames are multibyte on Unix and probably widechar on Windows?
-#ifdef __UNIX__
+#if defined(__UNIX__) || defined(__BORLANDC__)
 #define wxMBFILES 1
 #else
 #define wxMBFILES 0