diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-11 08:42:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-11 09:48:18 +0200 |
commit | 3553a5d3a899954c4db09e264d8faf07e817e564 (patch) | |
tree | 15f5d78ebe53ed498536c2d518a4cc2ad195c072 /svx/source/sdr/contact | |
parent | e624c13cf1732f42d2da212b1b96aa9de7dd66cf (diff) |
loplugin: defaultparams
Change-Id: I513643385dc0a04b68c5cf4a5f43aa0804e572e6
Diffstat (limited to 'svx/source/sdr/contact')
-rw-r--r-- | svx/source/sdr/contact/viewcontactofgraphic.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/sdr/contact/viewcontactofgraphic.cxx b/svx/source/sdr/contact/viewcontactofgraphic.cxx index d59308a9b3c3..0319a0553375 100644 --- a/svx/source/sdr/contact/viewcontactofgraphic.cxx +++ b/svx/source/sdr/contact/viewcontactofgraphic.cxx @@ -131,7 +131,7 @@ namespace sdr aSmallerMatrix = basegfx::tools::createShearXRotateTranslateB2DHomMatrix(fShearX, fRotate, aTranslate) * aSmallerMatrix; - const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(false); + const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(); const GraphicAttr aLocalGrafInfo; const drawinglayer::primitive2d::Primitive2DReference xReferenceB(new drawinglayer::primitive2d::SdrGrafPrimitive2D( aSmallerMatrix, @@ -367,7 +367,7 @@ namespace sdr aObjectRange.getMinX(), aObjectRange.getMinY())); // get the current, unchanged graphic object from SdrGrafObj - const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(false); + const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(); if(visualisationUsesPresObj()) { @@ -420,7 +420,7 @@ namespace sdr return false; // draft when swapped out - const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(false); + const GraphicObject& rGraphicObject = GetGrafObject().GetGraphicObject(); static bool bAllowReplacements(true); if(rGraphicObject.IsSwappedOut() && bAllowReplacements) |