summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svl/filerec.hxx7
-rw-r--r--include/svl/itemset.hxx7
-rw-r--r--svl/source/inc/poolio.hxx12
-rw-r--r--svl/source/items/itemset.cxx13
4 files changed, 0 insertions, 39 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx
index bc9b9626c0af..e7a0a6d91810 100644
--- a/include/svl/filerec.hxx
+++ b/include/svl/filerec.hxx
@@ -45,13 +45,6 @@
#define SFX_REC_HEADERSIZE_SINGLE 4 // additional HEADERSIZE_MINI => 8
#define SFX_REC_HEADERSIZE_MULTI 6 // additional HEADERSIZE_SINGLE => 14
-#ifndef DBG
-#ifdef DBG_UTIL
-#define DBG(x) x
-#else
-#define DBG(x)
-#endif
-#endif
// General file format: documented at class SfxMiniRecordReader below
diff --git a/include/svl/itemset.hxx b/include/svl/itemset.hxx
index eed23ce66ac7..86e07e16e9f3 100644
--- a/include/svl/itemset.hxx
+++ b/include/svl/itemset.hxx
@@ -33,11 +33,6 @@ typedef SfxPoolItem const** SfxItemArray;
#define USHORT_ARG int
-#ifdef DBG
-#undef DBG
-#endif
-#define DBG(s)
-
#define SFX_ITEMSET_GET( rSet, pItem, ItemType, nSlotId, bDeep ) \
const ItemType *pItem = (const ItemType*) \
(rSet).GetItem( nSlotId, bDeep, TYPE(ItemType) )
@@ -146,9 +141,7 @@ public:
inline void SfxItemSet::SetParent( const SfxItemSet* pNew )
{
- DBG( if (_pParent) --*_pChildCount(_pParent) );
_pParent = pNew;
- DBG( if (_pParent) ++*_pChildCount(_pParent) );
}
class SVL_DLLPUBLIC SfxAllItemSet: public SfxItemSet
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx
index 80eaa18f60f8..eca801cf4038 100644
--- a/svl/source/inc/poolio.hxx
+++ b/svl/source/inc/poolio.hxx
@@ -168,18 +168,6 @@ struct SfxItemPool_Impl
};
-
-// IBM-C-Set mag keine doppelten Defines
-#ifdef DBG
-# undef DBG
-#endif
-
-#if defined(DBG_UTIL) && defined(_MSC_VER)
-#define DBG(x) x
-#else
-#define DBG(x)
-#endif
-
#define CHECK_FILEFORMAT( rStream, nTag ) \
{ sal_uInt16 nFileTag; \
rStream.ReadUInt16( nFileTag ); \
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx
index f773fb5afee7..5a1e64ab7a58 100644
--- a/svl/source/items/itemset.cxx
+++ b/svl/source/items/itemset.cxx
@@ -94,7 +94,6 @@ SfxItemSet::SfxItemSet
_nCount( 0 )
{
DBG_ASSERTWARNING( _pPool == _pPool->GetMasterPool(), "no Master Pool" );
- DBG( _pChildCountCtor; *_pChildCount(this) = 0 );
// DBG_ASSERT( bTotalRanges || abs( &bTotalRanges - this ) < 1000,
// "please use suitable ranges" );
#if defined DBG_UTIL && defined SFX_ITEMSET_NO_DEFAULT_CTOR
@@ -123,7 +122,6 @@ SfxItemSet::SfxItemSet( SfxItemPool& rPool, sal_uInt16 nWhich1, sal_uInt16 nWhic
{
DBG_ASSERT( nWhich1 <= nWhich2, "Invalid range" );
DBG_ASSERTWARNING( _pPool == _pPool->GetMasterPool(), "no Master Pool" );
- DBG( _pChildCountCtor; *_pChildCount(this) = 0 );
InitRanges_Impl(nWhich1, nWhich2);
}
@@ -161,7 +159,6 @@ SfxItemSet::SfxItemSet( SfxItemPool& rPool,
{
DBG_ASSERT( nWh1 <= nWh2, "Invalid range" );
DBG_ASSERTWARNING( _pPool == _pPool->GetMasterPool(), "no Master Pool" );
- DBG( _pChildCountCtor; *_pChildCount(this) = 0 );
if(!nNull)
InitRanges_Impl(
@@ -213,7 +210,6 @@ SfxItemSet::SfxItemSet( SfxItemPool& rPool, const sal_uInt16* pWhichPairTable )
, _nCount(0)
{
DBG_ASSERTWARNING( _pPool == _pPool->GetMasterPool(), "no Master Pool" );
- DBG( _pChildCountCtor; *_pChildCount(this) = 0 );
// pWhichPairTable == 0 ist f"ur das SfxAllEnumItemSet
if ( pWhichPairTable )
@@ -226,8 +222,6 @@ SfxItemSet::SfxItemSet( const SfxItemSet& rASet ):
_nCount( rASet._nCount )
{
DBG_ASSERTWARNING( _pPool == _pPool->GetMasterPool(), "no Master Pool" );
- DBG( _pChildCountCtor; *_pChildCount(this) = 0 );
- DBG( ++*_pChildCount(_pParent) );
// Calculate the attribute count
sal_uInt16 nCnt = 0;
@@ -273,10 +267,6 @@ SfxItemSet::SfxItemSet( const SfxItemSet& rASet ):
SfxItemSet::~SfxItemSet()
{
-#ifdef DBG_UTIL
- DBG( DBG_ASSERT( 0 == *_pChildCount(this), "SfxItemSet: deleting parent-itemset" ) )
-#endif
-
sal_uInt16 nCount = TotalCount();
if( Count() )
{
@@ -303,9 +293,6 @@ SfxItemSet::~SfxItemSet()
if ( _pWhichRanges != _pPool->GetFrozenIdRanges() )
delete[] _pWhichRanges;
_pWhichRanges = 0; // for invariant-testing
-
- DBG( --*_pChildCount(_pParent) );
- DBG( delete _pChildCount(this); _pChildCountDtor );
}