wxWinCE build fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-03-06 23:58:27 +00:00
parent 132bcd1256
commit 8942f83aca

View File

@ -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;