diff options
author | Sören Möller <soerenmoeller2001@gmail.com> | 2012-07-04 22:53:11 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-07-05 16:18:51 +0200 |
commit | b6cfbd08c2a9b686cfe024a63469cbcd10d9a4bd (patch) | |
tree | b3a8e6515424445bc5a0c1d0e7fb86e313da57f7 /sc/qa | |
parent | 8e9e166d35191eaacfe2001fa0d50fb8c29394f4 (diff) |
Replaced deprecated tools/String with OUString in ScMatrix
Change-Id: If431e5ef8b5c97384a1bb1c7fa36c6894ece8343
Diffstat (limited to 'sc/qa')
-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 43c160793ad9..f317f52068e1 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -1198,7 +1198,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.pS->equalsAscii("Test")); } else if (nCol == 8 && nRow == 11) { |