summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-09 18:24:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-10 18:32:10 +0100
commitfc93d61fa9e5733cd55bcae15604bbf247ca701a (patch)
tree0764e97aaab378e0ccff868eabdbb61412a80a2a /svtools
parent6d711b55d8440d3615923fd983d56d886266f8ea (diff)
Avoid reserved identifier
Change-Id: I8fa13369070d8364c8f1f574dfa056d021d4c083
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/svhtml/parhtml.cxx4
1 files changed, 2 insertions, 2 deletions
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;
}