git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43998
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
inline int wxTimeSpan::GetMinutes() 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
}
inline int wxTimeSpan::GetHours() const