]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/datectrl.h
Compile fix for VC++ 6
[wxWidgets.git] / include / wx / msw / datectrl.h
index 4e891c5b717d5e73e329681775908f380d881a03..c4078c6f6893edb7f64534a0109e465e8c1684f5 100644 (file)
@@ -53,15 +53,18 @@ public:
     virtual void SetRange(const wxDateTime& dt1, const wxDateTime& dt2);
     virtual bool GetRange(wxDateTime *dt1, wxDateTime *dt2) const;
 
-protected:
     virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
 
     virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
 
+protected:
     virtual wxSize DoGetBestSize() const;
 
+    // the date currently shown by the control, may be invalid
+    wxDateTime m_date;
+
 
-    DECLARE_NO_COPY_CLASS(wxDatePickerCtrl)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxDatePickerCtrl)
 };
 
 #endif // _WX_MSW_DATECTRL_H_