From: Vadim Zeitlin Date: Fri, 13 Jul 2007 13:43:57 +0000 (+0000) Subject: use wxLongLong::ToLong() and not GetLo() to extract time_t value in GetTicks(): they... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d3c58c7ec012727bccf3c7ad5ee93200617b9a19 use wxLongLong::ToLong() and not GetLo() to extract time_t value in GetTicks(): they are very different on 64 bit platforms git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/datetime.h b/include/wx/datetime.h index 5acab96681..c5f9f365df 100644 --- a/include/wx/datetime.h +++ b/include/wx/datetime.h @@ -1676,7 +1676,7 @@ inline time_t wxDateTime::GetTicks() const return (time_t)-1; } - return (time_t)((m_time / (long)TIME_T_FACTOR).GetLo())+WX_TIME_BASE_OFFSET ; + return (time_t)((m_time / (long)TIME_T_FACTOR).ToLong()) + WX_TIME_BASE_OFFSET; } inline bool wxDateTime::SetToLastWeekDay(WeekDay weekday,