X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23324ae1c7938ba904770fc456d3c07764b9c5e9..d9faa1fede04455b98de64001bcad46fa2061231:/interface/dateevt.h diff --git a/interface/dateevt.h b/interface/dateevt.h index 2273f7c6fc..13bb4bb7e5 100644 --- a/interface/dateevt.h +++ b/interface/dateevt.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: dateevt.h -// Purpose: documentation for wxDateEvent class +// Purpose: interface of wxDateEvent // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -9,11 +9,11 @@ /** @class wxDateEvent @wxheader{dateevt.h} - + This event class holds information about a date change and is used together with wxDatePickerCtrl. It also serves as a base class for wxCalendarEvent. - + @library{wxadv} @category{events} */ @@ -23,7 +23,7 @@ public: /** Returns the date. */ - const wxDateTime GetDate(); + const wxDateTime GetDate() const; /** Sets the date carried by the event, normally only used by the library @@ -31,3 +31,4 @@ public: */ void SetDate(const wxDateTime& date); }; +