Change-Id: Ib6bfd1938d8d2da3d3aa9ccbb7b80750c4671f39
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169279
Tested-by: Jenkins
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
This commit is contained in:
Andrea Gelmini 2024-06-20 15:25:37 +02:00
parent 04bd09866f
commit 431e3d8a52

View file

@ -115,7 +115,7 @@ static sal_Int32 GetDayDiff(const Date& rDate) { return rDate - Date(1899'12'30)
static sal_Int32 nanoSecToMilliSec(sal_Int64 nNanoSeconds)
{
// Rounding nanoseconds to milliseconds precision to avoid comparision inaccuracies
// Rounding nanoseconds to milliseconds precision to avoid comparison inaccuracies
return o3tl::convert(nNanoSeconds, 1, tools::Time::nanoPerMilli);
}