diff options
author | Johnny_M <klasse@partyheld.de> | 2020-03-27 13:49:09 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2020-03-31 15:35:13 +0200 |
commit | 1823b8ff7892bef50c521a0e90fc317b834d5d11 (patch) | |
tree | 206890bb0fbe7743e5f5e1c0355bfd196453dfa9 /sw | |
parent | fd23a09cfa04120b670878079c92045dabdc067b (diff) |
Translate German variable names
Ende -> End
Change-Id: I8f86d38fc8c815c6c4760a67a475cdff73a4ac17
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91215
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/DocumentContentOperationsManager.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx index 0491adeda901..cad942607c0b 100644 --- a/sw/source/core/doc/DocumentContentOperationsManager.cxx +++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx @@ -4121,14 +4121,14 @@ bool DocumentContentOperationsManager::DeleteRangeImplImpl(SwPaM & rPam) } // if the end is not a content node, delete it as well - sal_uInt32 nEnde = pEnd->nNode.GetIndex(); + sal_uInt32 nEnd = pEnd->nNode.GetIndex(); if( pCNd == nullptr ) - nEnde++; + nEnd++; - if( aSttIdx != nEnde ) + if( aSttIdx != nEnd ) { // delete the Nodes into the NodesArary - m_rDoc.GetNodes().Delete( aSttIdx, nEnde - aSttIdx.GetIndex() ); + m_rDoc.GetNodes().Delete( aSttIdx, nEnd - aSttIdx.GetIndex() ); } // If the Node that contained the Cursor has been deleted, |