summaryrefslogtreecommitdiff
path: root/svx/source/items/e3ditem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/items/e3ditem.cxx')
-rw-r--r--svx/source/items/e3ditem.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/svx/source/items/e3ditem.cxx b/svx/source/items/e3ditem.cxx
index b57e5a84149f..caf73ff9a630 100644
--- a/svx/source/items/e3ditem.cxx
+++ b/svx/source/items/e3ditem.cxx
@@ -27,8 +27,6 @@ using namespace ::com::sun::star;
// STATIC DATA -----------------------------------------------------------
-DBG_NAMEEX(SvxB3DVectorItem)
-DBG_NAME(SvxB3DVectorItem)
@@ -38,12 +36,10 @@ TYPEINIT1_FACTORY(SvxB3DVectorItem, SfxPoolItem, new SvxB3DVectorItem);
SvxB3DVectorItem::SvxB3DVectorItem()
{
- DBG_CTOR(SvxB3DVectorItem, 0);
}
SvxB3DVectorItem::~SvxB3DVectorItem()
{
- DBG_DTOR(SvxB3DVectorItem, 0);
}
@@ -52,7 +48,6 @@ SvxB3DVectorItem::SvxB3DVectorItem( sal_uInt16 _nWhich, const basegfx::B3DVector
SfxPoolItem( _nWhich ),
aVal( rVal )
{
- DBG_CTOR(SvxB3DVectorItem, 0);
}
@@ -61,14 +56,12 @@ SvxB3DVectorItem::SvxB3DVectorItem( const SvxB3DVectorItem& rItem ) :
SfxPoolItem( rItem ),
aVal( rItem.aVal )
{
- DBG_CTOR(SvxB3DVectorItem, 0);
}
bool SvxB3DVectorItem::operator==( const SfxPoolItem &rItem ) const
{
- DBG_CHKTHIS(SvxB3DVectorItem, 0);
DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
return ((SvxB3DVectorItem&)rItem).aVal == aVal;
}
@@ -77,7 +70,6 @@ bool SvxB3DVectorItem::operator==( const SfxPoolItem &rItem ) const
SfxPoolItem* SvxB3DVectorItem::Clone( SfxItemPool* /*pPool*/ ) const
{
- DBG_CHKTHIS(SvxB3DVectorItem, 0);
return new SvxB3DVectorItem( *this );
}
@@ -85,7 +77,6 @@ SfxPoolItem* SvxB3DVectorItem::Clone( SfxItemPool* /*pPool*/ ) const
SfxPoolItem* SvxB3DVectorItem::Create(SvStream &rStream, sal_uInt16 /*nVersion*/) const
{
- DBG_CHKTHIS(SvxB3DVectorItem, 0);
basegfx::B3DVector aStr;
double fValue;
rStream.ReadDouble( fValue ); aStr.setX(fValue);
@@ -98,7 +89,6 @@ SfxPoolItem* SvxB3DVectorItem::Create(SvStream &rStream, sal_uInt16 /*nVersion*/
SvStream& SvxB3DVectorItem::Store(SvStream &rStream, sal_uInt16 /*nItemVersion*/) const
{
- DBG_CHKTHIS(SvxB3DVectorItem, 0);
// ## if (nItemVersion)
double fValue;