summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2020-03-27 13:35:09 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2020-03-31 15:29:08 +0200
commita630cc81bf150cb7f47287aed45b7e250d46a1c1 (patch)
tree08f650f60405bbbe5fe275d17c40d3ff6b432b5d /sw
parentea054d8a82d07383c17981df8597f1eee79128d5 (diff)
Translate German variable names
Ende -> End Change-Id: I12f697212b1532d99ccf3a4ea8a11e2a583e848f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91211 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/docnode/ndsect.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/docnode/ndsect.cxx b/sw/source/core/docnode/ndsect.cxx
index 33389bc09b6b..cebcd156ff65 100644
--- a/sw/source/core/docnode/ndsect.cxx
+++ b/sw/source/core/docnode/ndsect.cxx
@@ -899,10 +899,10 @@ SwSectionNode* SwNodes::InsertTextSection(SwNodeIndex const& rNdIdx,
}
// Set the right StartNode for all in this Area
- sal_uLong nEnde = pSectNd->EndOfSectionIndex();
+ sal_uLong nEnd = pSectNd->EndOfSectionIndex();
sal_uLong nStart = pSectNd->GetIndex()+1;
sal_uLong nSkipIdx = ULONG_MAX;
- for( sal_uLong n = nStart; n < nEnde; ++n )
+ for( sal_uLong n = nStart; n < nEnd; ++n )
{
SwNode* pNd = (*this)[n];
@@ -935,7 +935,7 @@ SwSectionNode* SwNodes::InsertTextSection(SwNodeIndex const& rNdIdx,
static_cast<SwContentNode*>(pNd)->DelFrames(nullptr);
}
- sw_DeleteFootnote( pSectNd, nStart, nEnde );
+ sw_DeleteFootnote( pSectNd, nStart, nEnd );
if( bInsFrame )
{
@@ -1315,8 +1315,8 @@ void SwSectionNode::NodesArrChgd()
: pDoc->GetDfltFrameFormat() );
// Set the right StartNode for all in this Area
- sal_uLong nStart = GetIndex()+1, nEnde = EndOfSectionIndex();
- for( sal_uLong n = nStart; n < nEnde; ++n )
+ sal_uLong nStart = GetIndex()+1, nEnd = EndOfSectionIndex();
+ for( sal_uLong n = nStart; n < nEnd; ++n )
// Make up the Format's nesting
if( nullptr != ( pSectNd = rNds[ n ]->GetSectionNode() ) )
{