summaryrefslogtreecommitdiff
path: root/include/svl/custritm.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-28 16:05:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-28 16:05:19 +0100
commitd205ff49be10159d1766c2d06182c02255497def (patch)
tree3e2599b02f817af5b92d1759f4df45a0b642f0a2 /include/svl/custritm.hxx
parentae00e71afd36f7215669c34e8ea8cafaeed6e468 (diff)
Remove remaining DBG_CTOR etc. remnants from svl
Change-Id: Ib0a4bd4f3d056c39156bfcfb0bd28c62f2f530b2
Diffstat (limited to 'include/svl/custritm.hxx')
-rw-r--r--include/svl/custritm.hxx11
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;