summaryrefslogtreecommitdiff
path: root/include/svl/intitem.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/intitem.hxx
parentae00e71afd36f7215669c34e8ea8cafaeed6e468 (diff)
Remove remaining DBG_CTOR etc. remnants from svl
Change-Id: Ib0a4bd4f3d056c39156bfcfb0bd28c62f2f530b2
Diffstat (limited to 'include/svl/intitem.hxx')
-rw-r--r--include/svl/intitem.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/svl/intitem.hxx b/include/svl/intitem.hxx
index 0aa876042f75..262915df4ba5 100644
--- a/include/svl/intitem.hxx
+++ b/include/svl/intitem.hxx
@@ -38,9 +38,6 @@ public:
{ return new SfxByteItem(*this); }
};
-
-DBG_NAMEEX_VISIBILITY(SfxInt16Item, SVL_DLLPUBLIC)
-
class SVL_DLLPUBLIC SfxInt16Item: public SfxPoolItem
{
sal_Int16 m_nValue;
@@ -50,15 +47,15 @@ public:
explicit SfxInt16Item(sal_uInt16 which = 0, sal_Int16 nTheValue = 0):
SfxPoolItem(which), m_nValue(nTheValue)
- { DBG_CTOR(SfxInt16Item, 0); }
+ {}
SfxInt16Item(sal_uInt16 nWhich, SvStream & rStream);
SfxInt16Item(const SfxInt16Item & rItem):
SfxPoolItem(rItem), m_nValue(rItem.m_nValue)
- { DBG_CTOR(SfxInt16Item, 0); }
+ {}
- virtual ~SfxInt16Item() { DBG_DTOR(SfxInt16Item, 0); }
+ virtual ~SfxInt16Item() {}
virtual bool operator ==(const SfxPoolItem & rItem) const SAL_OVERRIDE;