From 4b614012dae717f50893334520785e18e9b302c2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 14 Dec 2001 23:45:17 +0000 Subject: [PATCH] added EVT_CUSTOM test git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/event/event.cpp | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.45.2