Interface fixes for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-06-07 04:42:57 +00:00
parent 432d207e1c
commit 08f639f16e

View File

@@ -54,6 +54,11 @@ enum
class wxTimePickerCtrl : public wxControl class wxTimePickerCtrl : public wxControl
{ {
public: 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 The date part of the returned wxDateTime object is always set to today
and should be ignored, only the time part is relevant. 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);
}; };