summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdglue.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-04 14:29:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-05 08:50:27 +0200
commitec38966951f28a1e1d4c97f01a550c87f152cbc8 (patch)
treee5a6e35accae72cf0535b1c34ba384bf2730f9d3 /svx/source/svdraw/svdglue.cxx
parent44bc7fc5609a4930e7236b43cf445920a2a3bc77 (diff)
loplugin:checkunusedparams in svx(part3)
Change-Id: I4b9b749565750acc7f674957fd619870b0e29237 Reviewed-on: https://gerrit.libreoffice.org/37240 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdglue.cxx')
-rw-r--r--svx/source/svdraw/svdglue.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdglue.cxx b/svx/source/svdraw/svdglue.cxx
index 7563fa3bc57c..835adc1c8205 100644
--- a/svx/source/svdraw/svdglue.cxx
+++ b/svx/source/svdraw/svdglue.cxx
@@ -243,7 +243,7 @@ void SdrGluePoint::Mirror(const Point& rRef1, const Point& rRef2, long nAngle, c
if (pObj!=nullptr) SetAbsolutePos(aPt,*pObj); else SetPos(aPt);
}
-void SdrGluePoint::Shear(const Point& rRef, long /*nAngle*/, double tn, bool bVShear, const SdrObject* pObj)
+void SdrGluePoint::Shear(const Point& rRef, double tn, bool bVShear, const SdrObject* pObj)
{
Point aPt(pObj!=nullptr ? GetAbsolutePos(*pObj) : GetPos());
ShearPoint(aPt,rRef,tn,bVShear);
@@ -396,11 +396,11 @@ void SdrGluePointList::Mirror(const Point& rRef1, const Point& rRef2, long nAngl
}
}
-void SdrGluePointList::Shear(const Point& rRef, long nAngle, double tn, bool bVShear, const SdrObject* pObj)
+void SdrGluePointList::Shear(const Point& rRef, double tn, bool bVShear, const SdrObject* pObj)
{
sal_uInt16 nCount=GetCount();
for (sal_uInt16 nNum=0; nNum<nCount; nNum++) {
- GetObject(nNum)->Shear(rRef,nAngle,tn,bVShear,pObj);
+ GetObject(nNum)->Shear(rRef,tn,bVShear,pObj);
}
}