some more #if wxUSE_BASE (but still not enough)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-25 23:50:35 +00:00
parent 5fb98c22c2
commit 3ed2104c99

View File

@@ -50,8 +50,10 @@
// wxWin macros
// ----------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
#if wxUSE_BASE
IMPLEMENT_DYNAMIC_CLASS(wxEvtHandler, wxObject)
IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
#endif // wxUSE_BASE
#if wxUSE_GUI
IMPLEMENT_DYNAMIC_CLASS(wxIdleEvent, wxEvent)
@@ -91,6 +93,8 @@ IMPLEMENT_ABSTRACT_CLASS(wxEvent, wxObject)
IMPLEMENT_DYNAMIC_CLASS(wxMouseCaptureChangedEvent, wxEvent)
#endif // wxUSE_GUI
#if wxUSE_BASE
const wxEventTable *wxEvtHandler::GetEventTable() const
{ return &wxEvtHandler::sm_eventTable; }
@@ -322,6 +326,8 @@ wxEvent::wxEvent(const wxEvent &src)
{
}
#endif // wxUSE_BASE
#if wxUSE_GUI
/*
@@ -602,6 +608,8 @@ wxChildFocusEvent::wxChildFocusEvent(wxWindow *win)
// wxEvtHandler
// ----------------------------------------------------------------------------
#if wxUSE_BASE
/*
* Event handler
*/
@@ -772,6 +780,8 @@ void wxEvtHandler::ProcessPendingEvents()
#endif
}
#endif // wxUSE_BASE
/*
* Event table stuff
*/