From 2976a37ff7039d521c4d15a8387e9db9b27f89d8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 22 Dec 2019 20:37:35 +0200 Subject: sal_Char->char in svtools..svl Change-Id: Ideb61209e8795865bce6e0b1d667b34f8a8db4d9 Reviewed-on: https://gerrit.libreoffice.org/85713 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svtools/source/svrtf/svparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools/source/svrtf/svparser.cxx') 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::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::GetNextChar() } else { - sal_Char sBuffer[10]; + char sBuffer[10]; sBuffer[0] = c1; sal_uInt16 nLen = 1; while( (nInfo&RTL_TEXTTOUNICODE_INFO_SRCBUFFERTOOSMALL) != 0 && -- cgit