]> git.saurik.com Git - wxWidgets.git/commitdiff
unicode correction for mac
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 13 Sep 2003 09:00:28 +0000 (09:00 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 13 Sep 2003 09:00:28 +0000 (09:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filefn.h
include/wx/wxchar.h

index 1468e5b9bb45c96bee8a8fbc0e0ac72f2cc9d41c..32ff8ffaf357e691de2a1f9c3afbae2601d27f57 100644 (file)
@@ -158,7 +158,7 @@ WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf );
 WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode );
 WXDLLIMPEXP_BASE int wxOpen( const wxChar *pathname, int flags, mode_t mode );
 #else
-#if defined(__WXMAC__) && !defined(__DARWIN__)  && !defined(wxUSE_UNICODE)
+#if defined(__WXMAC__) && !defined(__DARWIN__)  && !wxUSE_UNICODE
 #include <sys/stat.h>
 WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf );
 WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode );
index d33314879264eb438b02058de02e62252f6fc461..27148c595d09d98cdd1ee2d40b4411e92f588508 100644 (file)
         #define  wxStrxfrm   strxfrm
 
         // stdio.h functions
-        #if defined(__WXMAC__) && !defined(__DARWIN__)  && !defined(wxUSE_UNICODE)
+        #if defined(__WXMAC__) && !defined(__DARWIN__)  && !wxUSE_UNICODE
         #include <stdio.h>
         WXDLLIMPEXP_BASE FILE *   wxFopen(const wxChar *path, const wxChar *mode);
         WXDLLIMPEXP_BASE FILE *   wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream);