summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 12:27:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 15:49:36 +0100
commit6873e0a969948a96679f667400da4eaa4ef2cc07 (patch)
tree0ab7f225de65c7a3729d53b46c263404d35a3098 /sc/qa
parent494e6a082c0186d7e54bc718439f79ed29471614 (diff)
sal_Char->char in sc
Change-Id: I7e212a36898e71b03db88053647bfeee12a49cb5 Reviewed-on: https://gerrit.libreoffice.org/85690 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/unit/opencl-test.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index f72300da02f3..f27ed8ad5ab3 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -738,10 +738,10 @@ void ScOpenCLTest::testSystematic()
double fExcel = rDoc.GetValue(ScAddress(j, nBVertBegin + (i - nAVertBegin), 0));
const OString sFailedMessage =
- OStringChar(static_cast<sal_Char>('A'+j)) +
+ OStringChar(static_cast<char>('A'+j)) +
OString::number(i+1) +
"!=" +
- OStringChar(static_cast<sal_Char>('A'+j)) +
+ OStringChar(static_cast<char>('A'+j)) +
OString::number(nBVertBegin+(i-nAVertBegin)+1);
CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(sFailedMessage.getStr(), fExcel, fLibre, 1e-10);
}