summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-02-03 15:24:50 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-02-03 15:24:50 +0100
commit4eed16d83cad3446e250c23f9e9ca48a1d9a6d9c (patch)
treed7b1301ec2998d58a445babf942daa63b3960b79
parentconnectivity: fix gcc-4.8 build (diff)
downloadcore-4eed16d83cad3446e250c23f9e9ca48a1d9a6d9c.tar.gz
core-4eed16d83cad3446e250c23f9e9ca48a1d9a6d9c.zip
Typo: consequetive->consecutive
Change-Id: I2c4c856a1f208c253493b852108743c643c2ea6d
-rw-r--r--sw/source/core/layout/calcmove.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/layout/calcmove.cxx b/sw/source/core/layout/calcmove.cxx
index d7bb1d375f04..5ece5474b25f 100644
--- a/sw/source/core/layout/calcmove.cxx
+++ b/sw/source/core/layout/calcmove.cxx
@@ -1048,7 +1048,7 @@ void SwCntntFrm::MakeAll()
LockJoin();
long nFormatCount = 0;
// - loop prevention
- int nConsequetiveFormatsWithoutChange = 0;
+ int nConsecutiveFormatsWithoutChange = 0;
PROTOCOL_ENTER( this, PROT_MAKEALL, 0, 0 )
#ifdef DBG_UTIL
@@ -1326,9 +1326,9 @@ void SwCntntFrm::MakeAll()
if( nFormatCount > STOP_FLY_FORMAT )
SetFlyLock( true );
// - loop prevention
- // No format any longer, if <cnStopFormat> consequetive formats
+ // No format any longer, if <cnStopFormat> consecutive formats
// without change occur.
- if ( nConsequetiveFormatsWithoutChange <= cnStopFormat )
+ if ( nConsecutiveFormatsWithoutChange <= cnStopFormat )
{
Format();
}
@@ -1445,11 +1445,11 @@ void SwCntntFrm::MakeAll()
if ( aOldFrm_StopFormat == Frm() &&
aOldPrt_StopFormat == Prt() )
{
- ++nConsequetiveFormatsWithoutChange;
+ ++nConsecutiveFormatsWithoutChange;
}
else
{
- nConsequetiveFormatsWithoutChange = 0;
+ nConsecutiveFormatsWithoutChange = 0;
}
}
@@ -1634,7 +1634,7 @@ void SwCntntFrm::MakeAll()
if ( bMoveOrFit && GetUpper() == pOldUp )
{
// FME 2007-08-30 #i81146# new loop control
- if ( nConsequetiveFormatsWithoutChange <= cnStopFormat )
+ if ( nConsecutiveFormatsWithoutChange <= cnStopFormat )
{
Prepare( PREP_MUST_FIT, 0, false );
mbValidSize = false;