diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-09 18:24:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-10 18:32:10 +0100 |
commit | fc93d61fa9e5733cd55bcae15604bbf247ca701a (patch) | |
tree | 0764e97aaab378e0ccff868eabdbb61412a80a2a | |
parent | 6d711b55d8440d3615923fd983d56d886266f8ea (diff) |
Avoid reserved identifier
Change-Id: I8fa13369070d8364c8f1f574dfa056d021d4c083
-rw-r--r-- | include/svtools/parhtml.hxx | 2 | ||||
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx index 4ebc95730d01..e4f38e27614a 100644 --- a/include/svtools/parhtml.hxx +++ b/include/svtools/parhtml.hxx @@ -151,7 +151,7 @@ protected: int ScanText( const sal_Unicode cBreak = 0U ); - int _GetNextRawToken(); + int GetNextRawToken(); // scan next token virtual int GetNextToken_() override; diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index ea51e55c018d..b2e309f0e7fb 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -823,7 +823,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) return HTML_TEXTTOKEN; } -int HTMLParser::_GetNextRawToken() +int HTMLParser::GetNextRawToken() { OUStringBuffer sTmpBuffer( MAX_LEN ); @@ -1075,7 +1075,7 @@ int HTMLParser::GetNextToken_() if( bReadScript || bReadStyle || !aEndToken.isEmpty() ) { - nRet = _GetNextRawToken(); + nRet = GetNextRawToken(); if( nRet || !IsParserWorking() ) return nRet; } |