Kaydet (Commit) 30420eca authored tarafından Christina Rossmanith's avatar Christina Rossmanith

renamed variable bWeiter to bContinue

üst 93537447
...@@ -450,11 +450,11 @@ int HTMLParser::FilterToken( int nToken ) ...@@ -450,11 +450,11 @@ int HTMLParser::FilterToken( int nToken )
int HTMLParser::ScanText( const sal_Unicode cBreak ) int HTMLParser::ScanText( const sal_Unicode cBreak )
{ {
::rtl::OUStringBuffer sTmpBuffer( MAX_LEN ); ::rtl::OUStringBuffer sTmpBuffer( MAX_LEN );
int bWeiter = sal_True; int bContinue = sal_True;
int bEqSignFound = sal_False; int bEqSignFound = sal_False;
sal_Unicode cQuote = 0U; sal_Unicode cQuote = 0U;
while( bWeiter && IsParserWorking() ) while( bContinue && IsParserWorking() )
{ {
int bNextCh = sal_True; int bNextCh = sal_True;
switch( nNextCh ) switch( nNextCh )
...@@ -734,7 +734,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -734,7 +734,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
// abc&auml;<EOF> nicht angezeigt, also lassen wir das in Zukunft. // abc&auml;<EOF> nicht angezeigt, also lassen wir das in Zukunft.
// if( '>' != cBreak ) // if( '>' != cBreak )
// eState = SVPAR_ACCEPTED; // eState = SVPAR_ACCEPTED;
bWeiter = sal_False; bContinue = sal_False;
} }
else else
{ {
...@@ -747,7 +747,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -747,7 +747,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
if( '>'==cBreak ) if( '>'==cBreak )
sTmpBuffer.append( nNextCh ); sTmpBuffer.append( nNextCh );
else else
bWeiter = sal_False; // Abbrechen, String zusammen bContinue = sal_False; // Abbrechen, String zusammen
break; break;
case '\f': case '\f':
...@@ -759,7 +759,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -759,7 +759,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
else else
{ {
// sonst wird es ein eigenes Token // sonst wird es ein eigenes Token
bWeiter = sal_False; bContinue = sal_False;
} }
break; break;
...@@ -773,7 +773,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -773,7 +773,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
} }
else if( bReadListing || bReadXMP || bReadPRE || bReadTextArea ) else if( bReadListing || bReadXMP || bReadPRE || bReadTextArea )
{ {
bWeiter = sal_False; bContinue = sal_False;
break; break;
} }
// Bug 18984: CR-LF -> Blank // Bug 18984: CR-LF -> Blank
...@@ -783,7 +783,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -783,7 +783,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
if( '\t'==nNextCh && bReadPRE && '>'!=cBreak ) if( '\t'==nNextCh && bReadPRE && '>'!=cBreak )
{ {
// In <PRE>: Tabs nach oben durchreichen // In <PRE>: Tabs nach oben durchreichen
bWeiter = sal_False; bContinue = sal_False;
break; break;
} }
// kein break // kein break
...@@ -828,7 +828,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -828,7 +828,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
bEqSignFound = sal_False; bEqSignFound = sal_False;
if( (nNextCh==cBreak && !cQuote) || if( (nNextCh==cBreak && !cQuote) ||
(sal_uLong(aToken.Len()) + MAX_LEN) > sal_uLong(STRING_MAXLEN & ~1 )) (sal_uLong(aToken.Len()) + MAX_LEN) > sal_uLong(STRING_MAXLEN & ~1 ))
bWeiter = sal_False; bContinue = sal_False;
else else
{ {
do { do {
...@@ -860,7 +860,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) ...@@ -860,7 +860,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak )
if( MAX_LEN == sTmpBuffer.getLength() ) if( MAX_LEN == sTmpBuffer.getLength() )
aToken += String(sTmpBuffer.makeStringAndClear()); aToken += String(sTmpBuffer.makeStringAndClear());
if( bWeiter && bNextCh ) if( bContinue && bNextCh )
nNextCh = GetNextChar(); nNextCh = GetNextChar();
} }
...@@ -887,10 +887,10 @@ int HTMLParser::_GetNextRawToken() ...@@ -887,10 +887,10 @@ int HTMLParser::_GetNextRawToken()
} }
// per default geben wir HTML_RAWDATA zurueck // per default geben wir HTML_RAWDATA zurueck
int bWeiter = sal_True; int bContinue = sal_True;
int nToken = HTML_RAWDATA; int nToken = HTML_RAWDATA;
SaveState( 0 ); SaveState( 0 );
while( bWeiter && IsParserWorking() ) while( bContinue && IsParserWorking() )
{ {
int bNextCh = sal_True; int bNextCh = sal_True;
switch( nNextCh ) switch( nNextCh )
...@@ -980,7 +980,7 @@ int HTMLParser::_GetNextRawToken() ...@@ -980,7 +980,7 @@ int HTMLParser::_GetNextRawToken()
// bisher gelesenen String zurueckgeben und dnach normal // bisher gelesenen String zurueckgeben und dnach normal
// weitermachen // weitermachen
bWeiter = sal_False; bContinue = sal_False;
// nToken==0 heisst, dass _GetNextToken gleich weiterliest // nToken==0 heisst, dass _GetNextToken gleich weiterliest
if( !aToken.Len() && (bReadStyle || bReadScript) ) if( !aToken.Len() && (bReadStyle || bReadScript) )
...@@ -1049,19 +1049,19 @@ int HTMLParser::_GetNextRawToken() ...@@ -1049,19 +1049,19 @@ int HTMLParser::_GetNextRawToken()
nNextCh = GetNextChar(); nNextCh = GetNextChar();
if( nNextCh=='\n' ) if( nNextCh=='\n' )
nNextCh = GetNextChar(); nNextCh = GetNextChar();
bWeiter = sal_False; bContinue = sal_False;
break; break;
case '\n': case '\n':
// \n beendet das aktuelle Text-Token (auch wenn es leer ist) // \n beendet das aktuelle Text-Token (auch wenn es leer ist)
nNextCh = GetNextChar(); nNextCh = GetNextChar();
bWeiter = sal_False; bContinue = sal_False;
break; break;
case sal_Unicode(EOF): case sal_Unicode(EOF):
// eof beendet das aktuelle Text-Token und tut so, als ob // eof beendet das aktuelle Text-Token und tut so, als ob
// ein End-Token gelesen wurde // ein End-Token gelesen wurde
if( rInput.IsEof() ) if( rInput.IsEof() )
{ {
bWeiter = sal_False; bContinue = sal_False;
if( aToken.Len() || sTmpBuffer.getLength() ) if( aToken.Len() || sTmpBuffer.getLength() )
{ {
bEndTokenFound = sal_True; bEndTokenFound = sal_True;
...@@ -1082,11 +1082,11 @@ int HTMLParser::_GetNextRawToken() ...@@ -1082,11 +1082,11 @@ int HTMLParser::_GetNextRawToken()
break; break;
} }
if( (!bWeiter && sTmpBuffer.getLength() > 0L) || if( (!bContinue && sTmpBuffer.getLength() > 0L) ||
MAX_LEN == sTmpBuffer.getLength() ) MAX_LEN == sTmpBuffer.getLength() )
aToken += String(sTmpBuffer.makeStringAndClear()); aToken += String(sTmpBuffer.makeStringAndClear());
if( bWeiter && bNextCh ) if( bContinue && bNextCh )
nNextCh = GetNextChar(); nNextCh = GetNextChar();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment