diff options
author | Johnny_M <klasse@partyheld.de> | 2019-04-07 12:09:49 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-04-09 14:44:33 +0200 |
commit | 027ff6cd73e512720e9bb4bb07016db8eaa5111c (patch) | |
tree | 35fa25a1e6503fe0c2cf5c014eec0a9b664cb785 /svx/source | |
parent | 46b1bb4a9c5ca93b33b4fcd2154062676c5059e4 (diff) |
Translate German variable names
Please feel free to suggest a better name, if desired
Change-Id: I1bd5805c206547a5f70d4d5186ecec2e624845fe
Reviewed-on: https://gerrit.libreoffice.org/70364
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdpagv.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdpagv.cxx b/svx/source/svdraw/svdpagv.cxx index c0499dbe8938..ebbbe8deca15 100644 --- a/svx/source/svdraw/svdpagv.cxx +++ b/svx/source/svdraw/svdpagv.cxx @@ -447,7 +447,7 @@ void SdrPageView::DrawPageViewGrid(OutputDevice& rOut, const tools::Rectangle& r bool bHoriLines=bHoriSolid || bHoriFine || !bVertFine; bool bVertLines=bVertSolid || bVertFine; - Color aColorMerk( rOut.GetLineColor() ); + Color aOriginalLineColor( rOut.GetLineColor() ); rOut.SetLineColor( aColor ); bool bMap0=rOut.IsMapModeEnabled(); @@ -554,7 +554,7 @@ void SdrPageView::DrawPageViewGrid(OutputDevice& rOut, const tools::Rectangle& r } rOut.EnableMapMode(bMap0); - rOut.SetLineColor(aColorMerk); + rOut.SetLineColor(aOriginalLineColor); } void SdrPageView::AdjHdl() |