summaryrefslogtreecommitdiff
path: root/include/svl/eitem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/eitem.hxx')
-rw-r--r--include/svl/eitem.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/svl/eitem.hxx b/include/svl/eitem.hxx
index cbfc1a4930a0..eb488f65b251 100644
--- a/include/svl/eitem.hxx
+++ b/include/svl/eitem.hxx
@@ -36,10 +36,7 @@ protected:
, m_nValue(nValue)
{ }
- SfxEnumItem(const SfxEnumItem & rItem)
- : SfxEnumItemInterface(rItem)
- , m_nValue(rItem.m_nValue)
- { }
+ SfxEnumItem(const SfxEnumItem &) = default;
SfxEnumItem(sal_uInt16 const nWhich, SvStream & rStream)
: SfxEnumItemInterface(nWhich)
@@ -95,11 +92,6 @@ public:
, m_bValue(bValue)
{ }
- SfxBoolItem(SfxBoolItem const& rItem)
- : SfxPoolItem(rItem)
- , m_bValue(rItem.m_bValue)
- { }
-
SfxBoolItem(sal_uInt16 nWhich, SvStream & rStream);
bool GetValue() const { return m_bValue; }