]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't use wstring for MinGW versions that don't support it
authorJulian Smart <julian@anthemion.co.uk>
Mon, 30 Oct 2006 07:04:07 +0000 (07:04 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 30 Oct 2006 07:04:07 +0000 (07:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 831f870c5ea0361f920d6f9dde725d64fa18a660..e22a7d625e89cf9cc6c2bee7d453a38305e65424 100644 (file)
@@ -375,7 +375,7 @@ typedef int wxWindowID;
         /*  VC++ 6.0 and 5.0 have std::wstring (what about earlier versions?) */
         #define HAVE_STD_WSTRING
     #elif ( defined(__MINGW32__) || defined(__CYGWIN32__) ) \
-          && wxCHECK_GCC_VERSION(3, 1)
+          && wxCHECK_GCC_VERSION(3, 3)
         /*  GCC 3.1 has std::wstring; 3.0 never was in MinGW, 2.95 hasn't it */
         #define HAVE_STD_WSTRING
     #endif