diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/misc/templatefoldercache.cxx | 3 | ||||
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/svtools/source/misc/templatefoldercache.cxx b/svtools/source/misc/templatefoldercache.cxx index c0237203d63c..9866c95211d5 100644 --- a/svtools/source/misc/templatefoldercache.cxx +++ b/svtools/source/misc/templatefoldercache.cxx @@ -97,7 +97,8 @@ namespace svt && _rLHS.Hours == _rRHS.Hours && _rLHS.Day == _rRHS.Day && _rLHS.Month == _rRHS.Month - && _rLHS.Year == _rRHS.Year; + && _rLHS.Year == _rRHS.Year + && _rLHS.IsUTC == _rRHS.IsUTC; } //--------------------------------------------------------------------- diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index 4a59b02656ce..123ca853bcb4 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -2187,7 +2187,8 @@ bool HTMLParser::ParseMetaOptionsImpl( ::util::DateTime uDT(aDateTime.GetNanoSec(), aDateTime.GetSec(), aDateTime.GetMin(), aDateTime.GetHour(), aDateTime.GetDay(), - aDateTime.GetMonth(), aDateTime.GetYear()); + aDateTime.GetMonth(), aDateTime.GetYear(), + false); if ( HTML_META_CREATED==nAction ) i_xDocProps->setCreationDate( uDT ); else |