// 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)
{
- win->Connect
- (
- wxEVT_DESTROY,
- wxWindowDestroyEventHandler(
- wxPersistentWindowBase::HandleDestroy),
- NULL,
- this
- );
+ wxBIND_OR_CONNECT_HACK(win, wxEVT_DESTROY, wxWindowDestroyEventHandler,
+ wxPersistentWindowBase::HandleDestroy, this);
}
virtual wxString GetName() const