From 8942f83aca9f9f80208ea1c2e5525d24a7eab554 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 6 Mar 2006 23:58:27 +0000 Subject: [PATCH] wxWinCE build fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.50.0