]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/wxchar.h
Added wxODBC_FWD_ONLY_CURSORS to allow for drivers/data sources that only support...
[wxWidgets.git] / include / wx / wxchar.h
index f51a494c29c26f9dcd2ef84adba5654056539ce1..2b6ba272fbe5cf72d274b8ae07735787d34717dd 100644 (file)
@@ -303,7 +303,10 @@ typedef unsigned __WCHAR_TYPE__ wxUChar;
 #   ifdef __FreeBSD__
 #     undef _T
 #   endif
-#   define _T(x)           x
+
+#   if !defined(__MINGW32__) || !defined(_T)
+#     define _T(x)           x
+#   endif
 
      // ctype.h functions
 #   define  wxIsalnum   isalnum
@@ -565,11 +568,11 @@ WXDLLEXPORT size_t   wxStrftime(wxChar *s, size_t max, const wxChar *fmt, const
 // although global macros with such names are really bad, we want to have
 // another name for _T() which should be used to avoid confusion between _T()
 // and _() in wxWindows sources
-#define T(x)       _T(x)
+#define wxT(x)       _T(x)
 
 // a Unicode-friendly __FILE__ analog
 #ifndef __TFILE__
-    #define __XFILE__(x) T(x)
+    #define __XFILE__(x) wxT(x)
     #define __TFILE__ __XFILE__(__FILE__)
 #endif