summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-11-04 14:05:29 +0100
committerEike Rathke <erack@redhat.com>2018-12-08 18:55:44 +0100
commit9a58c3eacf52d298d42f3a2aa990c82612eb05cc (patch)
treed5bf474c4a8296e7f7897f2cfd0be61285c2f275 /svx/source
parent2e83a62f15b564edfe7f585dd72fcb41058120b3 (diff)
Translate German variable names
Change-Id: I53951eee14e028365967615c0eb017ca43dfd891 Reviewed-on: https://gerrit.libreoffice.org/62845 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdedxv.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 0e7ca533bd5c..d2a4cff5710d 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -713,7 +713,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
const SdrTextObj* pText = GetTextEditObject();
bool bTextFrame(pText && pText->IsTextFrame());
bool bFitToSize(pTextEditOutliner->GetControlWord() & EEControlBits::STRETCHING);
- bool bModifyMerk(pTextEditOutliner->IsModified());
+ bool bModified(pTextEditOutliner->IsModified());
tools::Rectangle aBlankRect(rOutlView.GetOutputArea());
aBlankRect.Union(aMinTextEditArea);
tools::Rectangle aPixRect(rTargetDevice.LogicToPixel(aBlankRect));
@@ -729,7 +729,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
rOutlView.GetOutliner()->SetUpdateMode(true); // Bugfix #22596#
rOutlView.Paint(aBlankRect, &rTargetDevice);
- if(!bModifyMerk)
+ if(!bModified)
{
pTextEditOutliner->ClearModifyFlag();
}
@@ -744,7 +744,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
if (xProcessor)
{
- const bool bMerk(rTargetDevice.IsMapModeEnabled());
+ const bool bMapModeEnabled(rTargetDevice.IsMapModeEnabled());
const basegfx::B2DRange aRange(aPixRect.Left(), aPixRect.Top(), aPixRect.Right(), aPixRect.Bottom());
const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
const Color aHilightColor(aSvtOptionsDrawinglayer.getHilightColor());
@@ -762,7 +762,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
rTargetDevice.EnableMapMode(false);
xProcessor->process(aSequence);
- rTargetDevice.EnableMapMode(bMerk);
+ rTargetDevice.EnableMapMode(bMapModeEnabled);
}
}
@@ -810,10 +810,10 @@ void SdrObjEditView::ImpInvalidateOutlinerView(OutlinerView const & rOutlView) c
aOuterPix.AdjustRight(nPixSiz );
aOuterPix.AdjustBottom(nPixSiz );
- bool bMerk(pWin->IsMapModeEnabled());
+ bool bMapModeEnabled(pWin->IsMapModeEnabled());
pWin->EnableMapMode(false);
pWin->Invalidate(aOuterPix);
- pWin->EnableMapMode(bMerk);
+ pWin->EnableMapMode(bMapModeEnabled);
}
}
}