Avoid reserved identifier

Change-Id: I47c9613771bb99c43c12dfe43e2d3c2417403b56
This commit is contained in:
Stephan Bergmann
2016-03-09 18:49:30 +01:00
parent 732417ca24
commit cafad3b73e

View File

@@ -337,16 +337,16 @@ void SvRTFParser::ScanText()
sal_Char nSlash = '\\';
while (!bBreak)
{
wchar_t __next=GetNextChar();
if (__next>0xFF) // fix for #i43933# and #i35653#
wchar_t next=GetNextChar();
if (next>0xFF) // fix for #i43933# and #i35653#
{
if (!aByteString.isEmpty())
aStrBuffer.append( OStringToOUString(aByteString.makeStringAndClear(), GetSrcEncoding()) );
aStrBuffer.append((sal_Unicode)__next);
aStrBuffer.append((sal_Unicode)next);
continue;
}
nSlash = (sal_Char)__next;
nSlash = (sal_Char)next;
while (nSlash == 0xD || nSlash == 0xA)
nSlash = (sal_Char)GetNextChar();