From: Włodzimierz Skiba Date: Fri, 19 May 2006 10:13:57 +0000 (+0000) Subject: Build fix for link error in new combo code. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/339039581a65cc39729a10eb808598d06c02a4d7 Build fix for link error in new combo code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mgl/utils.cpp b/src/mgl/utils.cpp index 7bd3338d3b..c20c5db3ef 100644 --- a/src/mgl/utils.cpp +++ b/src/mgl/utils.cpp @@ -47,6 +47,16 @@ void wxBell() // FIXME_MGL } +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; +} + // ---------------------------------------------------------------------------- // display characterstics // ----------------------------------------------------------------------------