]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/datectrl.h
removed wxAcceleratorTable copy ctor docs, no port implements it
[wxWidgets.git] / interface / datectrl.h
index ecf23f98a4833d84184c68824c879a91a6baa64c..1a91b914545e0eeedcd70b0e8fb90a601a377197 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        datectrl.h
-// Purpose:     documentation for wxDatePickerCtrl class
+// Purpose:     interface of wxDatePickerCtrl
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -52,8 +52,7 @@
     @category{miscpickers}
     @appearance{datepickerctrl.png}
 
-    @seealso
-    wxCalendarCtrl, wxDateEvent
+    @see wxCalendarCtrl, wxDateEvent
 */
 class wxDatePickerCtrl : public wxControl
 {
@@ -119,13 +118,13 @@ public:
         @returns @false if no range limits are currently set, @true if at least one
                  bound is set.
     */
-    bool GetRange(wxDateTime* dt1, wxDateTime dt2);
+    bool GetRange(wxDateTime* dt1, wxDateTime dt2) const;
 
     /**
         Returns the currently selected. If there is no selection or the selection is
         outside of the current range, an invalid object is returned.
     */
-    wxDateTime GetValue();
+    wxDateTime GetValue() const;
 
     /**
         Please note that this function is only available in the generic version of this
@@ -154,3 +153,4 @@ public:
     */
     void SetValue(const wxDateTime& dt);
 };
+