summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svtools/parhtml.hxx2
-rw-r--r--include/svtools/parrtf.hxx2
-rw-r--r--include/svtools/svparser.hxx4
-rw-r--r--svtools/source/svhtml/parhtml.cxx8
-rw-r--r--svtools/source/svrtf/parrtf.cxx10
-rw-r--r--svtools/source/svrtf/svparser.cxx2
6 files changed, 14 insertions, 14 deletions
diff --git a/include/svtools/parhtml.hxx b/include/svtools/parhtml.hxx
index 5a2c19605afa..4ebc95730d01 100644
--- a/include/svtools/parhtml.hxx
+++ b/include/svtools/parhtml.hxx
@@ -154,7 +154,7 @@ protected:
int _GetNextRawToken();
// scan next token
- virtual int _GetNextToken() override;
+ virtual int GetNextToken_() override;
virtual ~HTMLParser();
diff --git a/include/svtools/parrtf.hxx b/include/svtools/parrtf.hxx
index f98dc7bfb8c2..1c45ddc49d5b 100644
--- a/include/svtools/parrtf.hxx
+++ b/include/svtools/parrtf.hxx
@@ -51,7 +51,7 @@ protected:
void SkipGroup();
// scanne das naechste Token,
- virtual int _GetNextToken() override;
+ virtual int GetNextToken_() override;
void ReadUnknownData();
virtual void ReadBitmapData();
diff --git a/include/svtools/svparser.hxx b/include/svtools/svparser.hxx
index 527c192fc35f..75d07b36cab9 100644
--- a/include/svtools/svparser.hxx
+++ b/include/svtools/svparser.hxx
@@ -97,10 +97,10 @@ protected:
TokenStackType* GetStackPtr( short nCnt );
// scan the next token:
- // work off Token stack and call _GetNextToken() if necessary.
+ // work off Token stack and call GetNextToken_() if necessary.
// That one is responsible for the recognition of new Tokens.
int GetNextToken();
- virtual int _GetNextToken() = 0;
+ virtual int GetNextToken_() = 0;
// is called for each Token that is recognized in CallParser
virtual void NextToken( int nToken );
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx
index 0ac318cdb337..ea51e55c018d 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -729,7 +729,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
case '\n':
if( '>'==cBreak )
{
- // cr/lf in tag is handled in _GetNextToken()
+ // cr/lf in tag is handled in GetNextToken_()
sTmpBuffer.appendUtf32( nNextCh );
break;
}
@@ -774,7 +774,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
}
else
// Only read blanks: no text must be returned
- // and _GetNextToken has to read until EOF
+ // and GetNextToken_ has to read until EOF
return 0;
}
} while ( ' ' == nNextCh || '\t' == nNextCh ||
@@ -925,7 +925,7 @@ int HTMLParser::_GetNextRawToken()
bContinue = false;
- // nToken==0 means, _GetNextToken continues to read
+ // nToken==0 means, GetNextToken_ continues to read
if( aToken.isEmpty() && (bReadStyle || bReadScript) )
{
// Immediately close environment (or context?)
@@ -1041,7 +1041,7 @@ int HTMLParser::_GetNextRawToken()
}
// Scan next token
-int HTMLParser::_GetNextToken()
+int HTMLParser::GetNextToken_()
{
int nRet = 0;
sSaveToken.clear();
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);
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx
index a17ca8a8fc66..1e70b2c30196 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -427,7 +427,7 @@ int SvParser::GetNextToken()
nTokenValue = -1; // marker for no value read
bTokenHasValue = false;
- nRet = _GetNextToken();
+ nRet = GetNextToken_();
if( SVPAR_PENDING == eState )
return nRet;
}