diff options
author | Johnny_M <klasse@partyheld.de> | 2018-11-04 13:41:28 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-12-08 21:20:47 +0100 |
commit | d6e6745683c80b66349eb82581a862fcc5961575 (patch) | |
tree | 4b42df9d58e1241dc34d237c2845460c517e4dc3 /svx | |
parent | 470a91cb041782e29664212d096bb16873ba57a0 (diff) |
Translate German variable names
Change-Id: Ic7d194bd256cc573c4081bb82619e42abf2dda90
Reviewed-on: https://gerrit.libreoffice.org/62842
Tested-by: Jenkins
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdglue.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdglue.cxx b/svx/source/svdraw/svdglue.cxx index 477f97d1130f..3cd77b138a7c 100644 --- a/svx/source/svdraw/svdglue.cxx +++ b/svx/source/svdraw/svdglue.cxx @@ -252,7 +252,7 @@ void SdrGluePoint::Shear(const Point& rRef, double tn, bool bVShear, const SdrOb void SdrGluePoint::Invalidate(vcl::Window& rWin, const SdrObject* pObj) const { - bool bMapMerk=rWin.IsMapModeEnabled(); + bool bMapMode=rWin.IsMapModeEnabled(); Point aPt(pObj!=nullptr ? GetAbsolutePos(*pObj) : GetPos()); aPt=rWin.LogicToPixel(aPt); rWin.EnableMapMode(false); @@ -264,7 +264,7 @@ void SdrGluePoint::Invalidate(vcl::Window& rWin, const SdrObject* pObj) const // do not erase background, that causes flicker (!) rWin.Invalidate(aRect, InvalidateFlags::NoErase); - rWin.EnableMapMode(bMapMerk); + rWin.EnableMapMode(bMapMode); } bool SdrGluePoint::IsHit(const Point& rPnt, const OutputDevice& rOut, const SdrObject* pObj) const |