[Libreoffice-commits] core.git: svx/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Feb 19 17:04:57 UTC 2019


 svx/source/svdraw/svdedtv2.cxx |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 358b8a451f502d53e01e6b1dc6afa24ee9c5e8bc
Author:     Johnny_M <klasse at partyheld.de>
AuthorDate: Sun Jan 13 15:02:24 2019 +0100
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Tue Feb 19 18:04:31 2019 +0100

    Translate German variable names
    
    Please feel free to suggest a better name, if desired
    
    Change-Id: Ic4bb7188d462cf204a847c4dd5afb6a14f4bf2bc
    Reviewed-on: https://gerrit.libreoffice.org/66261
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx
index 27dab493d2ed..a243a9c2d410 100644
--- a/svx/source/svdraw/svdedtv2.cxx
+++ b/svx/source/svdraw/svdedtv2.cxx
@@ -1256,7 +1256,7 @@ void SdrEditView::CombineMarkedObjects(bool bNoPolyPoly)
     // continue as before
     basegfx::B2DPolyPolygon aPolyPolygon;
     SdrObjList* pCurrentOL = nullptr;
-    SdrMarkList aRemoveMerker;
+    SdrMarkList aRemoveBuffer;
 
     SortMarkedObjects();
     size_t nInsPos = SAL_MAX_SIZE;
@@ -1294,7 +1294,7 @@ void SdrEditView::CombineMarkedObjects(bool bNoPolyPoly)
                 pInsOL = pObj->getParentSdrObjListFromSdrObject();
             }
 
-            aRemoveMerker.InsertEntry(SdrMark(pObj, pM->GetPageView()));
+            aRemoveBuffer.InsertEntry(SdrMark(pObj, pM->GetPageView()));
         }
     }
 
@@ -1376,12 +1376,12 @@ void SdrEditView::CombineMarkedObjects(bool bNoPolyPoly)
     }
 
     // build an UndoComment from the objects actually used
-    aRemoveMerker.ForceSort(); // important for remove (see below)
+    aRemoveBuffer.ForceSort(); // important for remove (see below)
     if( bUndo )
-        SetUndoComment(SvxResId(bNoPolyPoly?STR_EditCombine_OnePoly:STR_EditCombine_PolyPoly),aRemoveMerker.GetMarkDescription());
+        SetUndoComment(SvxResId(bNoPolyPoly?STR_EditCombine_OnePoly:STR_EditCombine_PolyPoly),aRemoveBuffer.GetMarkDescription());
 
     // remove objects actually used from the list
-    DeleteMarkedList(aRemoveMerker);
+    DeleteMarkedList(aRemoveBuffer);
     if( bUndo )
         EndUndo();
 }
@@ -1650,7 +1650,7 @@ void SdrEditView::ImpDismantleOneObject(const SdrObject* pObj, SdrObjList& rOL,
 void SdrEditView::DismantleMarkedObjects(bool bMakeLines)
 {
     // temporary MarkList
-    SdrMarkList aRemoveMerker;
+    SdrMarkList aRemoveBuffer;
 
     SortMarkedObjects();
 
@@ -1671,7 +1671,7 @@ void SdrEditView::DismantleMarkedObjects(bool bMakeLines)
         SdrObjList* pOL=pObj->getParentSdrObjListFromSdrObject();
         if (pOL!=pOL0) { pOL0=pOL; pObj->GetOrdNum(); } // make sure OrdNums are correct!
         if (ImpCanDismantle(pObj,bMakeLines)) {
-            aRemoveMerker.InsertEntry(SdrMark(pObj,pM->GetPageView()));
+            aRemoveBuffer.InsertEntry(SdrMark(pObj,pM->GetPageView()));
             const size_t nPos0=pObj->GetOrdNumDirect();
             size_t nPos=nPos0+1;
             SdrObjList* pSubList=pObj->GetSubList();
@@ -1696,7 +1696,7 @@ void SdrEditView::DismantleMarkedObjects(bool bMakeLines)
     if( bUndo )
     {
         // construct UndoComment from objects actually used
-        SetUndoComment(SvxResId(bMakeLines?STR_EditDismantle_Lines:STR_EditDismantle_Polys),aRemoveMerker.GetMarkDescription());
+        SetUndoComment(SvxResId(bMakeLines?STR_EditDismantle_Lines:STR_EditDismantle_Polys),aRemoveBuffer.GetMarkDescription());
         // remove objects actually used from the list
         EndUndo();
     }


More information about the Libreoffice-commits mailing list