summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-02-17 11:44:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-02-17 14:51:23 +0100
commit2cbf83e20889351e2d2a6e29e5c7d9250af58647 (patch)
tree9cea9bf90ff8bfcf79e7d2b827fdea9bdfdf8ad1 /svx
parent51648c8de8dc060abc8dff1af105acfccadab77d (diff)
loplugin:unusedmethods
Change-Id: I58c60262ca543bafb4db4433dbb98b195f7571ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130063 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/sdr/properties/groupproperties.hxx3
-rw-r--r--svx/source/sdr/properties/groupproperties.cxx5
-rw-r--r--svx/source/unodraw/unoshap2.cxx4
3 files changed, 0 insertions, 12 deletions
diff --git a/svx/inc/sdr/properties/groupproperties.hxx b/svx/inc/sdr/properties/groupproperties.hxx
index cc658a89a8b0..a5798440f983 100644
--- a/svx/inc/sdr/properties/groupproperties.hxx
+++ b/svx/inc/sdr/properties/groupproperties.hxx
@@ -34,9 +34,6 @@ namespace sdr::properties
// basic constructor
explicit GroupProperties(SdrObject& rObj);
- // copy constructor
- GroupProperties(const GroupProperties& rProps, SdrObject& rObj);
-
// destructor
virtual ~GroupProperties() override;
diff --git a/svx/source/sdr/properties/groupproperties.cxx b/svx/source/sdr/properties/groupproperties.cxx
index c84c856d0747..011d252702e0 100644
--- a/svx/source/sdr/properties/groupproperties.cxx
+++ b/svx/source/sdr/properties/groupproperties.cxx
@@ -37,11 +37,6 @@ namespace sdr::properties
{
}
- GroupProperties::GroupProperties(const GroupProperties& , SdrObject& rObj)
- : BaseProperties(rObj)
- {
- }
-
GroupProperties::~GroupProperties()
{
}
diff --git a/svx/source/unodraw/unoshap2.cxx b/svx/source/unodraw/unoshap2.cxx
index aecd0e0a8593..e68676b577c8 100644
--- a/svx/source/unodraw/unoshap2.cxx
+++ b/svx/source/unodraw/unoshap2.cxx
@@ -1778,10 +1778,6 @@ void SvxCustomShape::createCustomShapeDefaults( const OUString& rValueType )
static_cast<SdrObjCustomShape*>(GetSdrObject())->MergeDefaultAttributes( &rValueType );
}
-SvxShapeGroupAnyD::SvxShapeGroupAnyD(SdrObject* pObj)
- : SvxShape(pObj)
-{}
-
SvxShapeGroupAnyD::SvxShapeGroupAnyD( SdrObject* pObject, const SfxItemPropertyMapEntry* pEntries, const SvxItemPropertySet* pPropertySet )
: SvxShape(pObject, pEntries, pPropertySet)
{}