diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-23 11:55:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-23 15:12:29 +0100 |
commit | 1a53e60d444385c9b97ed16d245edbd44f8a5ac4 (patch) | |
tree | 2afe57cb7e3926367dd665999713b47efa80aa3d /tools/qa | |
parent | b0543bb714e5a646dae0ede594df4a564e569951 (diff) |
sal_Char->char in tools
Change-Id: Id8be02e445ac439439b2f78ba4a7376dd19ce360
Reviewed-on: https://gerrit.libreoffice.org/85744
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools/qa')
-rw-r--r-- | tools/qa/cppunit/test_reversemap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qa/cppunit/test_reversemap.cxx b/tools/qa/cppunit/test_reversemap.cxx index 04ed1741d211..be70ade79585 100644 --- a/tools/qa/cppunit/test_reversemap.cxx +++ b/tools/qa/cppunit/test_reversemap.cxx @@ -55,9 +55,9 @@ namespace void Test::testEncoding(rtl_TextEncoding eEncoding) { //Taking the single byte legacy encodings, fill in all possible values - std::vector<sal_Char> aAllChars(255); + std::vector<char> aAllChars(255); for (int i = 1; i <= 255; ++i) - aAllChars[i-1] = static_cast<sal_Char>(i); + aAllChars[i-1] = static_cast<char>(i); //Some slots are unused, so don't map to private, just set them to 'X' sal_uInt32 const convertFlags = OSTRING_TO_OUSTRING_CVTFLAGS ^ RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_MAPTOPRIVATE; |