]> git.saurik.com Git - wxWidgets.git/commitdiff
added DEFINE_LOCAL_EVENT_TYPE() macro
authorRon Lee <ron@debian.org>
Thu, 11 Oct 2001 00:14:54 +0000 (00:14 +0000)
committerRon Lee <ron@debian.org>
Thu, 11 Oct 2001 00:14:54 +0000 (00:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index aa9a3b14256c1843cce755e1d02cb2b0f16b3f28..9427bc81f97a68b2f7bec991e52261e4a56320e8 100644 (file)
@@ -76,6 +76,7 @@ typedef int wxEventType;
 #define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value,
 #define DECLARE_LOCAL_EVENT_TYPE(name, value) name = wxEVT_FIRST + value,
 #define DEFINE_EVENT_TYPE(name)
+#define DEFINE_LOCAL_EVENT_TYPE(name)
 
 
 #else // !WXWIN_COMPATIBILITY_EVENT_TYPES
@@ -89,6 +90,7 @@ typedef int wxEventType;
     extern const wxEventType WXDLLEXPORT name;
 #define DECLARE_LOCAL_EVENT_TYPE(name, value) extern const wxEventType name;
 #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
+#define DEFINE_LOCAL_EVENT_TYPE(name) const wxEventType name = wxNewEventType();
 
 // generate a new unique event type
 extern WXDLLEXPORT wxEventType wxNewEventType();