summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:37:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:51:05 +0100
commit667d49fd5cc4d5bd8551a88ef803badf70296c00 (patch)
tree27dae3ca4fd1a08b4f594a6610ac1146aec64df3 /test/source
parent40a7abaab8bead1b1f04774324b7d652ce7f75f1 (diff)
sal_Char->char in test..testtools
Change-Id: I060d5fc9124dc46b57400d108a889e4c879b5e8c Reviewed-on: https://gerrit.libreoffice.org/85731 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'test/source')
-rw-r--r--test/source/helper/transferable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/helper/transferable.cxx b/test/source/helper/transferable.cxx
index ec182f53e961..febcb294242d 100644
--- a/test/source/helper/transferable.cxx
+++ b/test/source/helper/transferable.cxx
@@ -68,14 +68,14 @@ OString OOO_DLLPUBLIC_TEST getTextSelection(
if (bConvert)
aRet = OUStringToOString(aString, RTL_TEXTENCODING_UTF8);
else
- aRet = OString(reinterpret_cast<const sal_Char*>(aString.getStr()),
+ aRet = OString(reinterpret_cast<const char*>(aString.getStr()),
aString.getLength() * sizeof(sal_Unicode));
}
else
{
uno::Sequence<sal_Int8> aSequence;
aAny >>= aSequence;
- aRet = OString(reinterpret_cast<sal_Char*>(aSequence.getArray()), aSequence.getLength());
+ aRet = OString(reinterpret_cast<char*>(aSequence.getArray()), aSequence.getLength());
}
return aRet;
}