X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88a7a4e10ed18f81a576dcd866cfbf02bf404c00..b2458f311b426717c4d36b51aed2595a59f373d9:/src/mgl/utils.cpp?ds=sidebyside diff --git a/src/mgl/utils.cpp b/src/mgl/utils.cpp index 415af9a973..c20c5db3ef 100644 --- a/src/mgl/utils.cpp +++ b/src/mgl/utils.cpp @@ -19,10 +19,10 @@ #ifndef WX_PRECOMP #include "wx/string.h" #include "wx/intl.h" + #include "wx/log.h" #endif #include "wx/apptrait.h" -#include "wx/log.h" #include "wx/process.h" #include @@ -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 // ----------------------------------------------------------------------------