From: Vadim Zeitlin Date: Fri, 14 Dec 2001 23:45:17 +0000 (+0000) Subject: added EVT_CUSTOM test X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4b614012dae717f50893334520785e18e9b302c2 added EVT_CUSTOM test git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/event/event.cpp b/samples/event/event.cpp index 6a68b78ae6..1f63f7efd1 100644 --- a/samples/event/event.cpp +++ b/samples/event/event.cpp @@ -179,6 +179,9 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_UPDATE_UI(Event_Pop, MyFrame::OnUpdateUIPop) EVT_MY_CUSTOM_COMMAND(-1, MyFrame::OnProcessCustom) + + // this would also work: + //EVT_CUSTOM(wxEVT_MY_CUSTOM_COMMAND, -1, MyFrame::OnProcessCustom) END_EVENT_TABLE() BEGIN_EVENT_TABLE(MyEvtHandler, wxEvtHandler)