]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datetime.h
Add a trivial virtual dtor to wxMarkupParserOutput.
[wxWidgets.git] / include / wx / datetime.h
index 49aa4d6dc6c22bc379fa295af43d86001dcbe799..286155f29f1b179f4588a1880ddad5c5847e0862 100644 (file)
@@ -462,7 +462,9 @@ public:
         //     instead of modifying the member fields directly!
     struct WXDLLIMPEXP_BASE Tm
     {
-        wxDateTime_t msec, sec, min, hour, mday;
+        wxDateTime_t msec, sec, min, hour,
+                     mday,  // Day of the month in 1..31 range.
+                     yday;  // Day of the year in 0..365 range.
         Month mon;
         int year;
 
@@ -497,9 +499,10 @@ public:
         // the timezone we correspond to
         TimeZone m_tz;
 
-        // these values can't be accessed directly because they're not always
-        // computed and we calculate them on demand
-        wxDateTime_t wday, yday;
+        // This value can only be accessed via GetWeekDay() and not directly
+        // because it's not always computed when creating this object and may
+        // need to be calculated on demand.
+        wxDateTime_t wday;
     };
 
     // static methods