]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for linking error after combo changes: dummy getting key state.
authorWłodzimierz Skiba <abx@abx.art.pl>
Sun, 14 May 2006 22:21:32 +0000 (22:21 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Sun, 14 May 2006 22:21:32 +0000 (22:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39153 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/window.cpp

index 72bebe9beed3a14960c825d67988efd757939e12..2727640fb498cc60c49854ce60834293aa9f3f00 100644 (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);