WinCE compile fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@54355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2008-06-25 08:35:35 +00:00
parent d079ccd92d
commit d56ca4d3f7

View File

@@ -4183,7 +4183,7 @@ bool wxWindowMSW::IsDoubleBuffered() const
return true;
wnd = wnd->GetParent();
} while ( wnd && !wnd->IsTopLevel() );
return false;
}
@@ -5961,6 +5961,7 @@ WXWORD wxCharCodeWXToMSW(int wxk, bool *isVirtual)
break;
default:
#ifndef __WXWINCE__
// check to see if its one of the OEM key codes.
BYTE vks = LOBYTE(VkKeyScan(wxk));
if ( vks != 0xff )
@@ -5968,6 +5969,7 @@ WXWORD wxCharCodeWXToMSW(int wxk, bool *isVirtual)
vk = vks;
}
else
#endif
{
if ( isVirtual )
*isVirtual = false;