summaryrefslogtreecommitdiff
path: root/sc/qa/unit/ucalc.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-10-27 15:27:07 +0200
committerEike Rathke <erack@redhat.com>2017-10-27 18:29:44 +0200
commitca214981553eb21a4276d07c76db0c37c234a11c (patch)
tree4a013e2909410bb5918478e031685a35df30d571 /sc/qa/unit/ucalc.cxx
parentc1a47f1a51360f4afed094c1f87790fafb95e103 (diff)
Handle decimalSeparatorAlternative in ScColumn::ParseString(), tdf#81671
Change-Id: I9f708b28ee5fdb23217e75386a64ab86dacfd3c4
Diffstat (limited to 'sc/qa/unit/ucalc.cxx')
-rw-r--r--sc/qa/unit/ucalc.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index db7bb49bff27..f03bb90fd470 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -1641,6 +1641,7 @@ void Test::testCSV()
bool bResult = ScStringUtil::parseSimpleNumber
(aStr, aTests[i].eSep == English ? '.' : ',',
aTests[i].eSep == English ? ',' : '.',
+ 0,
nValue);
CPPUNIT_ASSERT_EQUAL_MESSAGE ("CSV numeric detection failure", aTests[i].bResult, bResult);
CPPUNIT_ASSERT_EQUAL_MESSAGE ("CSV numeric value failure", aTests[i].nValue, nValue);