From: Julian Smart Date: Tue, 9 Jan 2001 15:50:01 +0000 (+0000) Subject: Extended ProcessTextCommand so processes SETFOCUS/KILLFOCUS; checked for valid X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e08d628d42cc5ff2416bc2164a22d6d518ba64e6?ds=inline Extended ProcessTextCommand so processes SETFOCUS/KILLFOCUS; checked for valid HWND in wxBuddyTextWndProc so if the event handler kills the HWND, it doesn't crash; added support for disabling 3D effect in buddy window. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/spinctrl.h b/include/wx/msw/spinctrl.h index 61a03e25ef..372cd47d61 100644 --- a/include/wx/msw/spinctrl.h +++ b/include/wx/msw/spinctrl.h @@ -94,6 +94,9 @@ protected: // the handler for wxSpinButton events void OnSpinChange(wxSpinEvent& event); + // Handle processing of special keys + void OnChar(wxKeyEvent& event); + // the data for the "buddy" text ctrl WXHWND m_hwndBuddy; WXFARPROC m_wndProcBuddy;