summaryrefslogtreecommitdiff
path: root/svx/source/table/svdotable.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-02 11:14:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-02 11:14:51 +0100
commit6eb60ca80115c35fbfce2789146e485835e7709e (patch)
tree16f1a2367eda914ef3a63cd0881888bcc27500c8 /svx/source/table/svdotable.cxx
parent0e513fdc44c36df54949628d7497345cff804f59 (diff)
loplugin:unnecessaryoverride (dtors) in svx
Change-Id: Icc4d9919cedadc00f1420939564dd095fab74cca
Diffstat (limited to 'svx/source/table/svdotable.cxx')
-rw-r--r--svx/source/table/svdotable.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index 2c8a9907c967..eadd5a9a818a 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -94,9 +94,6 @@ public:
// constructor for copying, but using new object
TableProperties(const TableProperties& rProps, SdrObject& rObj );
- // destructor
- virtual ~TableProperties() override;
-
// Clone() operator, normally just calls the local copy constructor
BaseProperties& Clone(SdrObject& rObj) const override;
@@ -113,10 +110,6 @@ TableProperties::TableProperties(const TableProperties& rProps, SdrObject& rObj)
{
}
-TableProperties::~TableProperties()
-{
-}
-
BaseProperties& TableProperties::Clone(SdrObject& rObj) const
{
return *(new TableProperties(*this, rObj));