diff options
Diffstat (limited to 'include/svx/sxelditm.hxx')
-rw-r--r-- | include/svx/sxelditm.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/svx/sxelditm.hxx b/include/svx/sxelditm.hxx index 1b3a8b52f59c..bd8d4fca2353 100644 --- a/include/svx/sxelditm.hxx +++ b/include/svx/sxelditm.hxx @@ -24,12 +24,16 @@ class SAL_DLLPUBLIC_RTTI SdrEdgeLineDeltaCountItem final : public SfxUInt16Item { + SdrEdgeLineDeltaCountItem(SdrEdgeLineDeltaCountItem const&) = default; + void operator=(SdrEdgeLineDeltaCountItem const&) = delete; + public: SdrEdgeLineDeltaCountItem(sal_uInt16 nVal = 0) : SfxUInt16Item(SDRATTR_EDGELINEDELTACOUNT, nVal, SfxItemType::SdrEdgeLineDeltaCountItemType) { } + virtual ~SdrEdgeLineDeltaCountItem() override; virtual SdrEdgeLineDeltaCountItem* Clone(SfxItemPool*) const override { return new SdrEdgeLineDeltaCountItem(*this); |