diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-22 20:37:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-23 07:40:24 +0100 |
commit | 2976a37ff7039d521c4d15a8387e9db9b27f89d8 (patch) | |
tree | 8462d9c2dd1d08db3d255d75fb4d44e3c7a556a9 /svl/qa/unit/lockfiles | |
parent | 2aa76522881bd92ddc4daeaabcb30a6938291afc (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/unit/lockfiles')
-rw-r--r-- | svl/qa/unit/lockfiles/test_lockfiles.cxx | 2 |
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); } |