summaryrefslogtreecommitdiff
path: root/svtools/source/svrtf
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-09-26 19:22:14 +0200
committerCaolán McNamara <caolanm@redhat.com>2013-10-02 15:14:09 +0000
commit35607cbcee9bad31c4f635a4ba7f6e98074e4985 (patch)
tree751333dfd1cc15927aa9abcb4f24794e36c58762 /svtools/source/svrtf
parent4f9071a043b5fef867dda289faaf972d009d185e (diff)
bWeiter -> bContinue
Change-Id: Ia0bba3c1610dce5d364fb584f04e0b66cc41fb20 Reviewed-on: https://gerrit.libreoffice.org/6077 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/source/svrtf')
-rw-r--r--svtools/source/svrtf/parrtf.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx
index 19742324272a..6ed6871e9a91 100644
--- a/svtools/source/svrtf/parrtf.cxx
+++ b/svtools/source/svrtf/parrtf.cxx
@@ -304,8 +304,8 @@ sal_Unicode SvRTFParser::GetHexValue()
void SvRTFParser::ScanText( const sal_Unicode cBreak )
{
OUStringBuffer aStrBuffer;
- int bWeiter = true;
- while( bWeiter && IsParserWorking() && aStrBuffer.getLength() < MAX_STRING_LEN)
+ int bContinue = true;
+ while( bContinue && IsParserWorking() && aStrBuffer.getLength() < MAX_STRING_LEN)
{
int bNextCh = true;
switch( nNextCh )
@@ -433,7 +433,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
else
{
nNextCh = '\\';
- bWeiter = false; // Abbrechen, String zusammen
+ bContinue = false; // Abbrechen, String zusammen
}
}
break;
@@ -441,7 +441,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
default:
rInput.SeekRel( -1 );
nNextCh = '\\';
- bWeiter = false; // Abbrechen, String zusammen
+ bContinue = false; // Abbrechen, String zusammen
break;
}
}
@@ -452,7 +452,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
// weiter
case '{':
case '}':
- bWeiter = false;
+ bContinue = false;
break;
case 0x0a:
@@ -461,7 +461,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
default:
if( nNextCh == cBreak || aStrBuffer.getLength() >= MAX_STRING_LEN)
- bWeiter = false;
+ bContinue = false;
else
{
do {
@@ -483,7 +483,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
}
}
- if( bWeiter && bNextCh )
+ if( bContinue && bNextCh )
nNextCh = GetNextChar();
}