diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-07 13:13:24 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-11 23:41:07 +0100 |
commit | ad26a7164f2a5fb3f37a77d531d4d8efd36ae4a4 (patch) | |
tree | dbcdf0f2c0bf11ee03ff4695074e2ebea058b786 /svl | |
parent | 38dfb9cf5d859828ce5a6990ea8a4f8c50ebc3d2 (diff) |
Move DBG_TRACE1 to OSL_TRACE
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/itemset.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index c90560891588..5b0977748b45 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -234,7 +234,7 @@ SfxItemSet::SfxItemSet( SfxItemPool& rPool, void SfxItemSet::InitRanges_Impl(const USHORT *pWhichPairTable) { DBG_CHKTHIS(SfxItemSet, 0); - DBG_TRACE1("SfxItemSet: Ranges-CopyCount==%ul", ++nRangesCopyCount); + OSL_TRACE("SfxItemSet: Ranges-CopyCount==%ul", ++nRangesCopyCount); USHORT nCnt = 0; const USHORT* pPtr = pWhichPairTable; @@ -314,7 +314,7 @@ SfxItemSet::SfxItemSet( const SfxItemSet& rASet ): *ppDst = &_pPool->Put( **ppSrc ); // dann noch die Which Ranges kopieren - DBG_TRACE1("SfxItemSet: Ranges-CopyCount==%ul", ++nRangesCopyCount); + OSL_TRACE("SfxItemSet: Ranges-CopyCount==%ul", ++nRangesCopyCount); std::ptrdiff_t cnt = pPtr - rASet._pWhichRanges+1; _pWhichRanges = new USHORT[ cnt ]; memcpy( _pWhichRanges, rASet._pWhichRanges, sizeof( USHORT ) * cnt); |