]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dateevt.h
small cleanup, removed unused headers
[wxWidgets.git] / include / wx / dateevt.h
index b37340c5cd6ce0b07edd367d4782c474cd6e8c70..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)
 };
 
 // ----------------------------------------------------------------------------