]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/timectrl.h
synchronize GTK2 minimum version in docs
[wxWidgets.git] / interface / wx / timectrl.h
index e2f3ec92469bd8fb260335fd7da8c895aa0dbfab..5b0ba8e71a2f738848327d6a4d8b0234bf4635f8 100644 (file)
@@ -54,6 +54,11 @@ enum
 class wxTimePickerCtrl : public wxControl
 {
 public:
 class wxTimePickerCtrl : public wxControl
 {
 public:
+    /**
+       Default constructor.
+    */
+    wxTimePickerCtrl();
+    
     /**
         Initializes the object and calls Create() with all the parameters.
     */
     /**
         Initializes the object and calls Create() with all the parameters.
     */
@@ -121,7 +126,7 @@ public:
         The date part of the returned wxDateTime object is always set to today
         and should be ignored, only the time part is relevant.
     */
         The date part of the returned wxDateTime object is always set to today
         and should be ignored, only the time part is relevant.
     */
-    virtual wxDateTime GetValue() const = 0;
+    virtual wxDateTime GetValue() const;
 
     /**
         Changes the current time of the control.
 
     /**
         Changes the current time of the control.
@@ -157,5 +162,5 @@ public:
 
         Calling this method does not result in a time change event.
     */
 
         Calling this method does not result in a time change event.
     */
-    virtual void SetValue(const wxDateTime& dt) = 0;
+    virtual void SetValue(const wxDateTime& dt);
 };
 };