fixed linker errors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-06-28 12:33:09 +00:00
parent 2bf2d09ed0
commit c15d9c859c
2 changed files with 5 additions and 2 deletions

View File

@@ -108,8 +108,8 @@ BEGIN_DECLARE_EVENT_TYPES()
// it is important to still have these as constants to avoid // it is important to still have these as constants to avoid
// initialization order related problems // initialization order related problems
DECLARE_EVENT_TYPE(wxEVT_NULL, 0) DECLARE_EVENT_TYPE(wxEVT_NULL, 0)
const wxEventType wxEVT_FIRST = 10000; DECLARE_EVENT_TYPE(wxEVT_FIRST, 10000)
const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000; DECLARE_EVENT_TYPE(wxEVT_USER_FIRST, wxEVT_FIRST + 2000)
#endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES
DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1) DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1)

View File

@@ -121,6 +121,9 @@ wxList *wxPendingEvents = (wxList *)NULL;
// common event types are defined here, other event types are defined by the // common event types are defined here, other event types are defined by the
// components which use them // components which use them
const wxEventType wxEVT_FIRST = 10000;
const wxEventType wxEVT_USER_FIRST = wxEVT_FIRST + 2000;
DEFINE_EVENT_TYPE(wxEVT_NULL) DEFINE_EVENT_TYPE(wxEVT_NULL)
DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED)
DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED)