summaryrefslogtreecommitdiff
path: root/svl/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 20:37:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 07:40:24 +0100
commit2976a37ff7039d521c4d15a8387e9db9b27f89d8 (patch)
tree8462d9c2dd1d08db3d255d75fb4d44e3c7a556a9 /svl/qa
parent2aa76522881bd92ddc4daeaabcb30a6938291afc (diff)
sal_Char->char in svtools..svl
Change-Id: Ideb61209e8795865bce6e0b1d667b34f8a8db4d9 Reviewed-on: https://gerrit.libreoffice.org/85713 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl/qa')
-rw-r--r--svl/qa/unit/lockfiles/test_lockfiles.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/qa/unit/lockfiles/test_lockfiles.cxx b/svl/qa/unit/lockfiles/test_lockfiles.cxx
index a14a89f605a2..edaa8c38a10a 100644
--- a/svl/qa/unit/lockfiles/test_lockfiles.cxx
+++ b/svl/qa/unit/lockfiles/test_lockfiles.cxx
@@ -83,7 +83,7 @@ OUString readLockFile(const OUString& aSource)
OStringBuffer aResult(static_cast<int>(nSize));
for (sal_Int8 nByte : aData)
{
- aResult.append(static_cast<sal_Char>(nByte));
+ aResult.append(static_cast<char>(nByte));
}
return OStringToOUString(aResult.makeStringAndClear(), RTL_TEXTENCODING_UTF8);
}