sw/source/core/docnode/ndsect.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit a630cc81bf150cb7f47287aed45b7e250d46a1c1
Author:     Johnny_M <kla...@partyheld.de>
AuthorDate: Fri Mar 27 13:35:09 2020 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Tue Mar 31 15:29:08 2020 +0200

    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.wegh...@posteo.de>

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() ) )
         {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to