X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..8fdbcf4de8eeff67ccfaf3deec833d203f112629:/src/common/textbuf.cpp?ds=inline diff --git a/src/common/textbuf.cpp b/src/common/textbuf.cpp index 542e19db1e..8a736a2a92 100644 --- a/src/common/textbuf.cpp +++ b/src/common/textbuf.cpp @@ -35,17 +35,12 @@ // ---------------------------------------------------------------------------- // default type is the native one -// the native type under Mac OS X is: -// - Unix when compiling with the Apple Developer Tools (__UNIX__) -// - Mac when compiling with CodeWarrior (__WXMAC__) const wxTextFileType wxTextBuffer::typeDefault = -#if defined(__WINDOWS__) || defined(__DOS__) || defined(__PALMOS__) +#if defined(__WINDOWS__) || defined(__DOS__) wxTextFileType_Dos; #elif defined(__UNIX__) wxTextFileType_Unix; -#elif defined(__WXMAC__) - wxTextFileType_Mac; #elif defined(__OS2__) wxTextFileType_Os2; #else