summaryrefslogtreecommitdiff
path: root/svx/inc/sxsoitm.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-08-28 14:43:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-08-29 11:12:47 +0200
commit3dfc17ed6334c619228668ffeff591bc75d32025 (patch)
treeb2c985c9557151e120ddb10c4cc82bda4d7835ce /svx/inc/sxsoitm.hxx
parentf8e989c2384250d30f84651eb03673fb8d8dd096 (diff)
loplugin:constantparam (3)
Change-Id: Ifc47bb8e096c9a8563021b2fcb44199577740746 Reviewed-on: https://gerrit.libreoffice.org/59747 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/inc/sxsoitm.hxx')
-rw-r--r--svx/inc/sxsoitm.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/inc/sxsoitm.hxx b/svx/inc/sxsoitm.hxx
index aa2be7641454..0d01cc7530a4 100644
--- a/svx/inc/sxsoitm.hxx
+++ b/svx/inc/sxsoitm.hxx
@@ -24,7 +24,7 @@
class SdrHorzShearOneItem: public SdrAngleItem {
public:
- SdrHorzShearOneItem(long nAngle=0): SdrAngleItem(SDRATTR_HORZSHEARONE,nAngle) {}
+ SdrHorzShearOneItem(): SdrAngleItem(SDRATTR_HORZSHEARONE,0) {}
SfxPoolItem* Clone(SfxItemPool*) const override
{
return new SdrHorzShearOneItem(*this);
@@ -33,7 +33,7 @@ public:
class SdrVertShearOneItem: public SdrAngleItem {
public:
- SdrVertShearOneItem(long nAngle=0): SdrAngleItem(SDRATTR_VERTSHEARONE,nAngle) {}
+ SdrVertShearOneItem(): SdrAngleItem(SDRATTR_VERTSHEARONE,0) {}
SfxPoolItem* Clone(SfxItemPool*) const override
{
return new SdrVertShearOneItem(*this);