summaryrefslogtreecommitdiff
path: root/svtools/source/svrtf/svparser.cxx
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 /svtools/source/svrtf/svparser.cxx
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 'svtools/source/svrtf/svparser.cxx')
-rw-r--r--svtools/source/svrtf/svparser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx
index a2f41e8e62eb..cafb5b8d38e5 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -275,7 +275,7 @@ sal_uInt32 SvParser<T>::GetNextChar()
sal_Size nChars = 0;
do
{
- sal_Char c1; // signed, that's the text converter expects
+ char c1; // signed, that's the text converter expects
rInput.ReadChar( c1 );
bErr = !rInput.good();
if( !bErr )
@@ -352,7 +352,7 @@ sal_uInt32 SvParser<T>::GetNextChar()
}
else
{
- sal_Char sBuffer[10];
+ char sBuffer[10];
sBuffer[0] = c1;
sal_uInt16 nLen = 1;
while( (nInfo&RTL_TEXTTOUNICODE_INFO_SRCBUFFERTOOSMALL) != 0 &&