diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 18:49:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:12 +0100 |
commit | cafad3b73e5bbcc8b4f86cb7d5359b0adab75984 (patch) | |
tree | 6dde375780e10c9aded28bc64135861b9cd3bbf0 /svtools | |
parent | 732417ca248519555fdf5fa344f048bfce900bd3 (diff) |
Avoid reserved identifier
Change-Id: I47c9613771bb99c43c12dfe43e2d3c2417403b56
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svrtf/parrtf.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx index 37131def9d5f..26461f600137 100644 --- a/svtools/source/svrtf/parrtf.cxx +++ b/svtools/source/svrtf/parrtf.cxx @@ -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(); |