From 455f81ac3660b611e58097563cddf514be7a32c8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Feb 2009 22:51:03 +0000 Subject: [PATCH] use DECLARE_LOCAL_EVENT_TYPE for our custom event, we don't need to export it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@58732 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/event/event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/event/event.cpp b/samples/event/event.cpp index a0647391ae..e8ec01e2c2 100644 --- a/samples/event/event.cpp +++ b/samples/event/event.cpp @@ -44,7 +44,7 @@ // // and you may use this code directly if you don't care about 2.2 compatibility BEGIN_DECLARE_EVENT_TYPES() - DECLARE_EVENT_TYPE(wxEVT_MY_CUSTOM_COMMAND, 7777) + DECLARE_LOCAL_EVENT_TYPE(wxEVT_MY_CUSTOM_COMMAND, 7777) END_DECLARE_EVENT_TYPES() DEFINE_EVENT_TYPE(wxEVT_MY_CUSTOM_COMMAND)