diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 18:21:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:10 +0100 |
commit | 6d711b55d8440d3615923fd983d56d886266f8ea (patch) | |
tree | 45250ffedb1ebe9c9ab949b086c41088a3b99b9a /svtools/source/svrtf/parrtf.cxx | |
parent | 19a5374b063551e448aa4ece115d6f711fc0772b (diff) |
Avoid reserved identifier
Change-Id: I59b2e4859fab89fb7508b8c929d4d586495c6022
Diffstat (limited to 'svtools/source/svrtf/parrtf.cxx')
-rw-r--r-- | svtools/source/svrtf/parrtf.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx index f5a73b6b0a6a..37131def9d5f 100644 --- a/svtools/source/svrtf/parrtf.cxx +++ b/svtools/source/svrtf/parrtf.cxx @@ -52,7 +52,7 @@ SvRTFParser::~SvRTFParser() } -int SvRTFParser::_GetNextToken() +int SvRTFParser::GetNextToken_() { int nRet = 0; do { @@ -173,10 +173,10 @@ int SvRTFParser::_GetNextToken() if (!_inSkipGroup) { // UPR - overread the group with the ansi // information - while( '{' != _GetNextToken() ) + while( '{' != GetNextToken_() ) ; SkipGroup(); - _GetNextToken(); // overread the last bracket + GetNextToken_(); // overread the last bracket nRet = 0; } break; @@ -407,7 +407,7 @@ void SvRTFParser::ScanText() OUString sSave( aToken ); nNextCh = '\\'; - int nToken = _GetNextToken(); + int nToken = GetNextToken_(); DBG_ASSERT( RTF_U == nToken, "doch kein UNI-Code Zeichen" ); // don't convert symbol chars aStrBuffer.append(static_cast< sal_Unicode >(nTokenValue)); @@ -534,7 +534,7 @@ _inSkipGroup++; } break; } - int nToken = _GetNextToken(); + int nToken = GetNextToken_(); if (nToken == RTF_BIN) { rInput.SeekRel(-1); |