Fix for linking error after combo changes: dummy getting key state.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39153 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-05-14 22:21:32 +00:00
parent ab82df4679
commit ab5903dae3

View File

@@ -4495,6 +4495,18 @@ int wxCharCodeWXToOS2( int nId,
return nKeySym;
} // end of wxCharCodeWXToOS2
bool wxGetKeyState(wxKeyCode key)
{
wxASSERT_MSG(key != WXK_LBUTTON && key != WXK_RBUTTON && key !=
WXK_MBUTTON, wxT("can't use wxGetKeyState() for mouse buttons"));
// TODO
return false;
}
wxWindow* wxGetActiveWindow()
{
HWND hWnd = ::WinQueryActiveWindow(HWND_DESKTOP);