]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dateevt.h
rename the ID parameter
[wxWidgets.git] / include / wx / dateevt.h
index e8ea79849626a373284fd3dd329ba9f8dc180615..f1f4f60d67b8a9b1d7492e2d87b8ba737fc52792 100644 (file)
@@ -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))