diff options
Diffstat (limited to 'include/svl/custritm.hxx')
-rw-r--r-- | include/svl/custritm.hxx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/svl/custritm.hxx b/include/svl/custritm.hxx index da5fe7ceb420..1cdc6d72b1b9 100644 --- a/include/svl/custritm.hxx +++ b/include/svl/custritm.hxx @@ -24,9 +24,6 @@ #include <tools/debug.hxx> #include <svl/poolitem.hxx> - -DBG_NAMEEX_VISIBILITY(CntUnencodedStringItem, SVL_DLLPUBLIC) - class SVL_DLLPUBLIC CntUnencodedStringItem: public SfxPoolItem { OUString m_aValue; @@ -35,17 +32,17 @@ public: TYPEINFO_OVERRIDE(); CntUnencodedStringItem(sal_uInt16 which = 0): SfxPoolItem(which) - { DBG_CTOR(CntUnencodedStringItem, 0); } + {} CntUnencodedStringItem(sal_uInt16 which, const OUString & rTheValue): SfxPoolItem(which), m_aValue(rTheValue) - { DBG_CTOR(CntUnencodedStringItem, 0); } + {} CntUnencodedStringItem(const CntUnencodedStringItem & rItem): SfxPoolItem(rItem), m_aValue(rItem.m_aValue) - { DBG_CTOR(CntUnencodedStringItem, 0); } + {} - virtual ~CntUnencodedStringItem() { DBG_DTOR(CntUnencodedStringItem, 0); } + virtual ~CntUnencodedStringItem() {} virtual bool operator ==(const SfxPoolItem & rItem) const SAL_OVERRIDE; |