Equivalent of std::mktime in LO
Vikas Mahato
vikasmahato0 at gmail.com
Sun Jul 29 06:49:40 UTC 2018
Hello All,
I have a patch here, https://gerrit.libreoffice.org/#/c/58152/ and I am
trying to replace
std::tm getDateTime(double nDateTime)
{
long nDays = std::trunc(nDateTime);
std::tm aDate = {};
aDate.tm_year = 0;
aDate.tm_mon = 0;
aDate.tm_mday = 0;
aDate.tm_sec = getSecond(nDateTime);
aDate.tm_min = getMinute(nDateTime);
aDate.tm_hour = getHour(nDateTime);
aDate.tm_wday = 0;
aDate.tm_yday = 0;
// Add number of days
aDate.tm_mday += nDays;
std::mktime(&aDate);
return aDate;
}
with css::util:DateTIme. I am having trouble finding out what is the
equivalent for std::mktime in LO.
Thanks,
Vikas Mahato
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice/attachments/20180729/60bd422c/attachment.html>
More information about the LibreOffice
mailing list