]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/dateevt.h
was incorrectly forcing the font to 12 in most cases, fixes #4745
[wxWidgets.git] / interface / dateevt.h
index 2273f7c6fca3313b123a650561c4a8327b52de6b..13bb4bb7e5c77755a944e0a04e8eb3af7edb67a6 100644 (file)
@@ -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);
 };
+