[Libreoffice-commits] core.git: sal/qa
Stephan Bergmann
sbergman at redhat.com
Wed Jan 13 08:06:53 PST 2016
sal/qa/rtl/math/test-rtl-math.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 036b4a366ecc7ea343a3fedee268463d6576cb32
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Jan 13 17:06:26 2016 +0100
loplugin:defaultparams
Change-Id: I507a16e1d87460dead79b78621202c68ee12c2c8
diff --git a/sal/qa/rtl/math/test-rtl-math.cxx b/sal/qa/rtl/math/test-rtl-math.cxx
index 6636934..51a655f 100644
--- a/sal/qa/rtl/math/test-rtl-math.cxx
+++ b/sal/qa/rtl/math/test-rtl-math.cxx
@@ -100,13 +100,13 @@ public:
fVal = 4503599627370495;
aRes = rtl::math::doubleToUString( fVal,
rtl_math_StringFormat_Automatic,
- rtl_math_DecimalPlaces_Max, '.', false);
+ rtl_math_DecimalPlaces_Max, '.');
CPPUNIT_ASSERT_EQUAL( OUString("4503599627370495"), aRes);
fVal = 4503599627370496;
aRes = rtl::math::doubleToUString( fVal,
rtl_math_StringFormat_Automatic,
- 2, '.', false);
+ 2, '.');
CPPUNIT_ASSERT_EQUAL( OUString("4503599627370496.00"), aRes);
fVal = 9007199254740991; // (2^53)-1
More information about the Libreoffice-commits
mailing list