]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datetime.h
Add a ctor that is compatible with the documented wxHelpController API
[wxWidgets.git] / include / wx / datetime.h
index 9deab532e1fa76facbadc195feafa98010f10393..75eb188a9f3ce13587c0057dae4af4a5fa8cd80b 100644 (file)
@@ -2107,9 +2107,9 @@ inline wxLongLong wxTimeSpan::GetSeconds() const
 
 inline int wxTimeSpan::GetMinutes() const
 {
-    // explicit cast to int suppresses a warning with CodeWarrior and possibly
-    // others (changing the return type to long from int is impossible in 2.8)
-    return (int)((GetSeconds() / 60l).GetLo());
+    // For compatibility, this method (and the other accessors) return int,
+    // even though GetLo() actually returns unsigned long with greater range.
+    return static_cast<int>((GetSeconds() / 60l).GetLo());
 }
 
 inline int wxTimeSpan::GetHours() const