X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5293e4b7109139cc51052d57c0585716d6250b76..33f3e2b31ed781ba1446b49ec6d3e226c0a5c652:/include/wx/persist/window.h diff --git a/include/wx/persist/window.h b/include/wx/persist/window.h index 84c27ba35c..30fa88b215 100644 --- a/include/wx/persist/window.h +++ b/include/wx/persist/window.h @@ -23,29 +23,15 @@ // type-independent part of wxPersistentWindow class wxPersistentWindowBase : -#if wxEVENTS_COMPATIBILITY_2_8 - // in compatibility mode we need to derive from wxEvtHandler to be able to - // handle events - public wxEvtHandler , -#endif + wxBIND_OR_CONNECT_HACK_BASE_CLASS public wxPersistentObject { public: wxPersistentWindowBase(wxWindow *win) : wxPersistentObject(win) { -#if wxEVENTS_COMPATIBILITY_2_8 - win->Connect - ( - wxEVT_DESTROY, - wxWindowDestroyEventHandler( - wxPersistentWindowBase::HandleDestroy), - NULL, - this - ); -#else // !wxEVENTS_COMPATIBILITY_2_8 - win->Bind(wxEVT_DESTROY, &wxPersistentWindowBase::HandleDestroy, this); -#endif // wxEVENTS_COMPATIBILITY_2_8/!wxEVENTS_COMPATIBILITY_2_8 + wxBIND_OR_CONNECT_HACK(win, wxEVT_DESTROY, wxWindowDestroyEventHandler, + wxPersistentWindowBase::HandleDestroy, this); } virtual wxString GetName() const