summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/filter/xml/xmlControlProperty.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/filter/xml/xmlControlProperty.cxx b/reportdesign/source/filter/xml/xmlControlProperty.cxx
index e14b86e0e6dc..a4f0741448b3 100644
--- a/reportdesign/source/filter/xml/xmlControlProperty.cxx
+++ b/reportdesign/source/filter/xml/xmlControlProperty.cxx
@@ -24,6 +24,7 @@
#include "xmlControlProperty.hxx"
+#include <o3tl/temporary.hxx>
#include <rtl/strbuf.hxx>
#include <sax/tools/converter.hxx>
#include "xmlfilter.hxx"
@@ -272,8 +273,7 @@ Any OXMLControlProperty::convertString(const css::uno::Type& _rExpectedType, con
{
case TYPE_DATE:
{
- double dummy;
- OSL_ENSURE(std::modf(nValue, &dummy) == 0,
+ OSL_ENSURE(std::modf(nValue, &o3tl::temporary(double())) == 0,
"OPropertyImport::convertString: a Date value with a fractional part?");
(void)dummy;
aReturn <<= implGetDate(nValue);