diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-17 15:55:38 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-19 14:05:11 -0400 |
commit | d3629a3942b681fcff006967c50394b3a9c344ee (patch) | |
tree | db2d942f7c334ce0b2180caf47361ec356e2b4be /sc/qa/unit | |
parent | d13804609737114f30dbc7580e4bc76e66cb02a8 (diff) |
It's no longer possible to unionize value and string here...
Thereby leaving a note to discourage use of ScMatrixValue. Incidentally,
now all the unit test passes.
Change-Id: I5d12f8ab654f985ef43b887a22abb6de45fea1fc
Diffstat (limited to 'sc/qa/unit')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 1450b845ff41..79cda88126ab 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -1224,7 +1224,7 @@ struct PartiallyFilledEmptyMatrix else if (nCol == 8 && nRow == 2) { CPPUNIT_ASSERT_MESSAGE("element is not of value type", rVal.nType == SC_MATVAL_STRING); - CPPUNIT_ASSERT_MESSAGE("element value is not what is expected", rVal.pS->equalsAscii("Test")); + CPPUNIT_ASSERT_MESSAGE("element value is not what is expected", rVal.aStr == "Test"); } else if (nCol == 8 && nRow == 11) { |