X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/890289805470b45ed99bdef406e1eba151a2694d..c56ae04274fda26269c6d06be34cf59a45eb70ce:/src/common/strconv.cpp diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index 6e3ab7e914..7b0e78a69d 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -1834,6 +1834,9 @@ private: static bool IsAtLeastWin2kSP4() { +#ifdef __WXWINCE__ + return false; +#else static int s_isAtLeastWin2kSP4 = -1; if ( s_isAtLeastWin2kSP4 == -1 ) @@ -1853,6 +1856,7 @@ private: } return s_isAtLeastWin2kSP4 == 1; +#endif } long m_CodePage;