X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7fa03f04345b620d1a14529b05961116b20a1297..4e0a055757f928dce8c53b8e4cb60a699ab43e07:/include/wx/dateevt.h diff --git a/include/wx/dateevt.h b/include/wx/dateevt.h index e8ea798496..f1f4f60d67 100644 --- a/include/wx/dateevt.h +++ b/include/wx/dateevt.h @@ -34,10 +34,13 @@ public: const wxDateTime& GetDate() const { return m_date; } void SetDate(const wxDateTime &date) { m_date = date; } + // default copy ctor, assignment operator and dtor are ok + virtual wxEvent *Clone() const { return new wxDateEvent(*this); } + private: wxDateTime m_date; - DECLARE_DYNAMIC_CLASS_NO_COPY(wxDateEvent) + DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDateEvent) }; // ---------------------------------------------------------------------------- @@ -51,7 +54,7 @@ END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxDateEventFunction)(wxDateEvent&); #define wxDateEventHandler(func) \ - (wxObjectEventFunction)wxStaticCastEvent(wxDateEventFunction, &func) + (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDateEventFunction, &func) #define EVT_DATE_CHANGED(id, fn) \ wx__DECLARE_EVT1(wxEVT_DATE_CHANGED, id, wxDateEventHandler(fn))