Kaydet (Commit) 9a58c3ea authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Eike Rathke

Translate German variable names

Change-Id: I53951eee14e028365967615c0eb017ca43dfd891
Reviewed-on: https://gerrit.libreoffice.org/62845
Tested-by: Jenkins
Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
üst 2e83a62f
...@@ -713,7 +713,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools:: ...@@ -713,7 +713,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
const SdrTextObj* pText = GetTextEditObject(); const SdrTextObj* pText = GetTextEditObject();
bool bTextFrame(pText && pText->IsTextFrame()); bool bTextFrame(pText && pText->IsTextFrame());
bool bFitToSize(pTextEditOutliner->GetControlWord() & EEControlBits::STRETCHING); bool bFitToSize(pTextEditOutliner->GetControlWord() & EEControlBits::STRETCHING);
bool bModifyMerk(pTextEditOutliner->IsModified()); bool bModified(pTextEditOutliner->IsModified());
tools::Rectangle aBlankRect(rOutlView.GetOutputArea()); tools::Rectangle aBlankRect(rOutlView.GetOutputArea());
aBlankRect.Union(aMinTextEditArea); aBlankRect.Union(aMinTextEditArea);
tools::Rectangle aPixRect(rTargetDevice.LogicToPixel(aBlankRect)); tools::Rectangle aPixRect(rTargetDevice.LogicToPixel(aBlankRect));
...@@ -729,7 +729,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools:: ...@@ -729,7 +729,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
rOutlView.GetOutliner()->SetUpdateMode(true); // Bugfix #22596# rOutlView.GetOutliner()->SetUpdateMode(true); // Bugfix #22596#
rOutlView.Paint(aBlankRect, &rTargetDevice); rOutlView.Paint(aBlankRect, &rTargetDevice);
if(!bModifyMerk) if(!bModified)
{ {
pTextEditOutliner->ClearModifyFlag(); pTextEditOutliner->ClearModifyFlag();
} }
...@@ -744,7 +744,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools:: ...@@ -744,7 +744,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
if (xProcessor) 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 basegfx::B2DRange aRange(aPixRect.Left(), aPixRect.Top(), aPixRect.Right(), aPixRect.Bottom());
const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer; const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer;
const Color aHilightColor(aSvtOptionsDrawinglayer.getHilightColor()); const Color aHilightColor(aSvtOptionsDrawinglayer.getHilightColor());
...@@ -762,7 +762,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools:: ...@@ -762,7 +762,7 @@ void SdrObjEditView::ImpPaintOutlinerView(OutlinerView& rOutlView, const tools::
rTargetDevice.EnableMapMode(false); rTargetDevice.EnableMapMode(false);
xProcessor->process(aSequence); xProcessor->process(aSequence);
rTargetDevice.EnableMapMode(bMerk); rTargetDevice.EnableMapMode(bMapModeEnabled);
} }
} }
...@@ -810,10 +810,10 @@ void SdrObjEditView::ImpInvalidateOutlinerView(OutlinerView const & rOutlView) c ...@@ -810,10 +810,10 @@ void SdrObjEditView::ImpInvalidateOutlinerView(OutlinerView const & rOutlView) c
aOuterPix.AdjustRight(nPixSiz ); aOuterPix.AdjustRight(nPixSiz );
aOuterPix.AdjustBottom(nPixSiz ); aOuterPix.AdjustBottom(nPixSiz );
bool bMerk(pWin->IsMapModeEnabled()); bool bMapModeEnabled(pWin->IsMapModeEnabled());
pWin->EnableMapMode(false); pWin->EnableMapMode(false);
pWin->Invalidate(aOuterPix); pWin->Invalidate(aOuterPix);
pWin->EnableMapMode(bMerk); pWin->EnableMapMode(bMapModeEnabled);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment