X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/50cbca27ad2fb93636b11f2d6754a25b85b93d94..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/timectrl.h diff --git a/interface/wx/timectrl.h b/interface/wx/timectrl.h index e2f3ec9246..5b25143048 100644 --- a/interface/wx/timectrl.h +++ b/interface/wx/timectrl.h @@ -3,7 +3,6 @@ // Purpose: interface of wxTimePickerCtrl // Author: Vadim Zeitlin // Created: 2011-09-22 -// RCS-ID: $Id$ // Copyright: (c) 2011 Vadim Zeitlin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -45,7 +44,7 @@ enum @library{wxadv} @category{pickers} - @appearance{timepickerctrl.png} + @appearance{timepickerctrl} @see wxDatePickerCtrl, wxDateEvent @@ -54,6 +53,11 @@ enum class wxTimePickerCtrl : public wxControl { public: + /** + Default constructor. + */ + wxTimePickerCtrl(); + /** Initializes the object and calls Create() with all the parameters. */ @@ -121,7 +125,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. */ - virtual wxDateTime GetValue() const = 0; + virtual wxDateTime GetValue() const; /** Changes the current time of the control. @@ -157,5 +161,5 @@ public: Calling this method does not result in a time change event. */ - virtual void SetValue(const wxDateTime& dt) = 0; + virtual void SetValue(const wxDateTime& dt); };