diff options
author | Johnny_M <klasse@partyheld.de> | 2018-11-04 13:57:16 +0100 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-11-06 19:31:13 +0100 |
commit | 98a9f8939edd7cd0c320cede16d5abf982add002 (patch) | |
tree | 5f35f2663d31f2568c71a68a175e92a4a9643c74 /svx/source | |
parent | fec8c14e960fbcd639a04d6c3354caff2d0bd365 (diff) |
Translate German variable names
Change-Id: I9f895b7d0a2317a8518dfa7e51e437e54dfb0c13
Reviewed-on: https://gerrit.libreoffice.org/62844
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdedxv.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx index cbc6b661cc35..0f7361bbd6d8 100644 --- a/svx/source/svdraw/svdedxv.cxx +++ b/svx/source/svdraw/svdedxv.cxx @@ -78,7 +78,7 @@ void SdrObjEditView::ImpClearVars() pTextEditOutlinerView=nullptr; pTextEditPV=nullptr; pTextEditWin=nullptr; - pTextEditCursorMerker=nullptr; + pTextEditCursorBuffer=nullptr; bTextEditNewObj=false; bMacroDown=false; pMacroObj=nullptr; @@ -1157,7 +1157,7 @@ bool SdrObjEditView::SdrBeginTextEdit( aTextEditArea.Move(aPvOfs.X(),aPvOfs.Y()); aMinTextEditArea += pTextObj->GetGridOffset(); aMinTextEditArea.Move(aPvOfs.X(),aPvOfs.Y()); - pTextEditCursorMerker=pWin->GetCursor(); + pTextEditCursorBuffer=pWin->GetCursor(); maHdlList.SetMoveOutside(true); @@ -1352,7 +1352,7 @@ SdrEndTextEditKind SdrObjEditView::SdrEndTextEdit(bool bDontDeleteReally) SdrTextObj* pTEObj = mxTextEditObj.get(); vcl::Window* pTEWin =pTextEditWin; OutlinerView* pTEOutlinerView=pTextEditOutlinerView; - vcl::Cursor* pTECursorMerker=pTextEditCursorMerker; + vcl::Cursor* pTECursorBuffer=pTextEditCursorBuffer; SdrUndoManager* pUndoEditUndoManager = nullptr; bool bNeedToUndoSavedRedoTextEdit(false); @@ -1422,7 +1422,7 @@ SdrEndTextEditKind SdrObjEditView::SdrEndTextEdit(bool bDontDeleteReally) pTextEditWin=nullptr; SdrOutliner* pTEOutliner = pTextEditOutliner.release(); pTextEditOutlinerView=nullptr; - pTextEditCursorMerker=nullptr; + pTextEditCursorBuffer=nullptr; aTextEditArea=tools::Rectangle(); if (pTEOutliner!=nullptr) @@ -1564,7 +1564,7 @@ SdrEndTextEditKind SdrObjEditView::SdrEndTextEdit(bool bDontDeleteReally) if (!bTextEditDontDelete) delete pTEOutliner; else pTEOutliner->Clear(); if (pTEWin!=nullptr) { - pTEWin->SetCursor(pTECursorMerker); + pTEWin->SetCursor(pTECursorBuffer); } maHdlList.SetMoveOutside(false); if (eRet!=SdrEndTextEditKind::Unchanged) |