]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datetime.h
disable (some) features that are not available in DirectFB
[wxWidgets.git] / include / wx / datetime.h
index 7c75150dbaab595dde77ed6c410ba6dc7219d91e..c65e1f64d80f0cff877581bb1c68a6c5498c8b8d 100644 (file)
@@ -1928,7 +1928,9 @@ inline wxLongLong wxTimeSpan::GetSeconds() const
 
 inline int wxTimeSpan::GetMinutes() const
 {
-    return (GetSeconds() / 60l).GetLo();
+    // 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());
 }
 
 inline int wxTimeSpan::GetHours() const