]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
added all IDs
[wxWidgets.git] / src / common / file.cpp
index 5d0d1bee7bc1fda2abbc5fee45ecd3d9d3d9a9be..48608225d418a1a2ae836f35ec5625dc52cf5a8d 100644 (file)
@@ -228,7 +228,7 @@ bool wxFile::Create(const wxChar *szFileName, bool bOverwrite, int accessMode)
     // otherwise we only create the new file and fail if it already exists
 #if defined(__WXMAC__) && !defined(__UNIX__) && !wxUSE_UNICODE
     // Dominic Mazzoni [dmazzoni+@cs.cmu.edu] reports that open is still broken on the mac, so we replace
-    // int fd = open(wxUnix2MacFilename( szFileName ), O_CREAT | (bOverwrite ? O_TRUNC : O_EXCL), access);
+    // int fd = open( szFileName , O_CREAT | (bOverwrite ? O_TRUNC : O_EXCL), access);
     int fd = creat( szFileName , accessMode);
 #else
 #ifdef __WXWINCE__