summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.cxx5
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.hxx2
2 files changed, 1 insertions, 6 deletions
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.cxx b/writerfilter/source/ooxml/OOXMLPropertySet.cxx
index bf9f966ecd24..c4ca1de9f6d1 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.cxx
@@ -38,11 +38,6 @@ OOXMLProperty::OOXMLProperty(Id id, const OOXMLValue::Pointer_t& pValue,
{
}
-OOXMLProperty::OOXMLProperty(const OOXMLProperty & rSprm)
-: SvRefBase(rSprm), mId(rSprm.mId), mpValue(rSprm.mpValue), meType(rSprm.meType)
-{
-}
-
OOXMLProperty::~OOXMLProperty()
{
}
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.hxx b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
index 3628ab6696c6..39480c78d004 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
@@ -64,7 +64,7 @@ private:
public:
OOXMLProperty(Id id, const OOXMLValue::Pointer_t& pValue, Type_t eType);
- OOXMLProperty(const OOXMLProperty & rSprm);
+ OOXMLProperty(const OOXMLProperty & rSprm) = delete;
virtual ~OOXMLProperty() override;
sal_uInt32 getId() const override;