Kaydet (Commit) 1091e786 authored tarafından Takeshi Abe's avatar Takeshi Abe Kaydeden (comit) Noel Grandin

vbahelper, xmloff: Ask current datetime only once

Change-Id: I930983fab11d30f0887965fe30b07c5ac6eef8ef
Reviewed-on: https://gerrit.libreoffice.org/54651Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 038c607e
......@@ -78,13 +78,12 @@ public:
static double GetNow()
{
Date aDateNow( Date::SYSTEM );
tools::Time aTimeNow( tools::Time::SYSTEM );
Date aRefDate( 1,1,1900 );
long nDiffDays = aDateNow - aRefDate;
DateTime aNow( DateTime::SYSTEM );
Date aRefDate( 1,1,1900 );
long nDiffDays = aNow - aRefDate;
nDiffDays += 2; // Change VisualBasic: 1.Jan.1900 == 2
long nDiffSeconds = aTimeNow.GetHour() * 3600 + aTimeNow.GetMin() * 60 + aTimeNow.GetSec();
long nDiffSeconds = aNow.GetHour() * 3600 + aNow.GetMin() * 60 + aNow.GetSec();
return static_cast<double>(nDiffDays) + static_cast<double>(nDiffSeconds)/double(24*3600);
}
......
......@@ -23,8 +23,7 @@
#include <o3tl/make_unique.hxx>
#include <tools/date.hxx>
#include <tools/time.hxx>
#include <tools/datetime.hxx>
#include <xmloff/txtimp.hxx>
#include <xmloff/xmlimp.hxx>
......@@ -198,8 +197,9 @@ OUString XMLTextListsHelper::GenerateNewListId() const
else
{
// Value of xml:id in element <text:list> has to be a valid ID type (#i92478#)
sal_Int64 n = ::tools::Time( ::tools::Time::SYSTEM ).GetTime();
n += Date( Date::SYSTEM ).GetDateUnsigned();
DateTime aDateTime( DateTime::SYSTEM );
sal_Int64 n = aDateTime.GetTime();
n += aDateTime.GetDateUnsigned();
n += comphelper::rng::uniform_int_distribution(0, std::numeric_limits<int>::max());
// Value of xml:id in element <text:list> has to be a valid ID type (#i92478#)
sTmpStr += OUString::number( n );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment