summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svtools/parhtml.hxx2
-rw-r--r--svtools/source/svhtml/parhtml.cxx4
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;
}