summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2020-03-27 14:18:39 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2020-03-31 15:34:01 +0200
commit4fa2e297eb8cb6d6e1f036be4609918034496251 (patch)
treec4d78edfefa761edbb76fab5afa45f1367c17074 /sw/source
parent778cf3c1d447f90d435e780560a7207c3f4518ba (diff)
Translate German variable names
Ende -> End Change-Id: I5d9cb8b91f20ed957c90558bc41b1da1c2ffb099 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91219 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/docnode/ndsect.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/docnode/ndsect.cxx b/sw/source/core/docnode/ndsect.cxx
index cebcd156ff65..76f1bd7466c4 100644
--- a/sw/source/core/docnode/ndsect.cxx
+++ b/sw/source/core/docnode/ndsect.cxx
@@ -780,14 +780,14 @@ SwSectionNode* SwNodes::InsertTextSection(SwNodeIndex const& rNdIdx,
SwSectionFormat& rSectionFormat,
SwSectionData const& rSectionData,
SwTOXBase const*const pTOXBase,
- SwNodeIndex const*const pEnde,
+ SwNodeIndex const*const pEnd,
bool const bInsAtStart, bool const bCreateFrames)
{
SwNodeIndex aInsPos( rNdIdx );
- if( !pEnde ) // No Area, thus create a new Section before/after it
+ if( !pEnd ) // No Area, thus create a new Section before/after it
{
// #i26762#
- OSL_ENSURE(!pEnde || rNdIdx <= *pEnde,
+ OSL_ENSURE(!pEnd || rNdIdx <= *pEnd,
"Section start and end in wrong order!");
if( bInsAtStart )
@@ -818,11 +818,11 @@ SwSectionNode* SwNodes::InsertTextSection(SwNodeIndex const& rNdIdx,
SwSectionNode *const pSectNd =
new SwSectionNode(aInsPos, rSectionFormat, pTOXBase);
- if( pEnde )
+ if( pEnd )
{
// Special case for the Reader/Writer
- if( &pEnde->GetNode() != &GetEndOfContent() )
- aInsPos = pEnde->GetIndex()+1;
+ if( &pEnd->GetNode() != &GetEndOfContent() )
+ aInsPos = pEnd->GetIndex()+1;
// #i58710: We created a RTF document with a section break inside a table cell
// We are not able to handle a section start inside a table and the section end outside.
const SwNode* pLastNode = pSectNd->StartOfSectionNode()->EndOfSectionNode();