X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1781e98b6da4b83716eeaf4b67475dd976234d1..aa2fc802a96feb1d0ab31034f75ede2840cb0f60:/include/wx/dateevt.h diff --git a/include/wx/dateevt.h b/include/wx/dateevt.h index 59e5b1df53..b37340c5cd 100644 --- a/include/wx/dateevt.h +++ b/include/wx/dateevt.h @@ -50,7 +50,11 @@ END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxDateEventFunction)(wxDateEvent&); -#define EVT_DATE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_DATE_CHANGED, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxDateEventFunction, & fn ), (wxObject *) NULL), +#define wxDateEventHandler(func) \ + (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDateEventFunction, &func) + +#define EVT_DATE_CHANGED(id, fn) \ + wx__DECLARE_EVT1(wxEVT_DATE_CHANGED, id, wxDateEventHandler(fn)) #ifdef _WX_DEFINE_DATE_EVENTS_ DEFINE_EVENT_TYPE(wxEVT_DATE_CHANGED)