From: Włodzimierz Skiba Date: Mon, 6 Mar 2006 23:58:27 +0000 (+0000) Subject: wxWinCE build fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8942f83aca9f9f80208ea1c2e5525d24a7eab554 wxWinCE build fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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;