diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-28 16:17:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-28 17:26:08 +0100 |
commit | a6c9d0046ae802629f5b5a13575605dac018aaa7 (patch) | |
tree | 9c62caa84421f0268c3a50558bbfacfddcf313de /unotools | |
parent | a9582c05f854cad02710178ab7fa79498573269e (diff) |
Remove remaining DBG_CTOR etc. remnants from unotools
Change-Id: Ife6cecde4a9e89146493737d06cd9f0d8a041610
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/misc/sharedunocomponent.cxx | 13 | ||||
-rw-r--r-- | unotools/source/streaming/streamwrap.cxx | 11 |
2 files changed, 0 insertions, 24 deletions
diff --git a/unotools/source/misc/sharedunocomponent.cxx b/unotools/source/misc/sharedunocomponent.cxx index 1bf431d31c26..b6971966f459 100644 --- a/unotools/source/misc/sharedunocomponent.cxx +++ b/unotools/source/misc/sharedunocomponent.cxx @@ -66,10 +66,6 @@ namespace utl } } - - //= CloseableComponentImpl - - DBG_NAME( CloseableComponentImpl ) typedef ::cppu::WeakImplHelper1 < XCloseListener > CloseableComponentImpl_Base; class CloseableComponentImpl : public CloseableComponentImpl_Base @@ -117,7 +113,6 @@ namespace utl CloseableComponentImpl::CloseableComponentImpl( const Reference< XInterface >& _rxComponent ) :m_xCloseable( _rxComponent, UNO_QUERY ) { - DBG_CTOR( CloseableComponentImpl, NULL ); DBG_ASSERT( m_xCloseable.is() || !_rxComponent.is(), "CloseableComponentImpl::CloseableComponentImpl: component is not an XCloseable!" ); impl_nf_switchListening( true ); } @@ -125,7 +120,6 @@ namespace utl CloseableComponentImpl::~CloseableComponentImpl() { nf_closeComponent(); - DBG_DTOR( CloseableComponentImpl, NULL ); } @@ -212,15 +206,9 @@ namespace utl // same reasoning for this assertion as in ->notifyClosing } - - //= CloseableComponentImpl - - DBG_NAME( CloseableComponent ) - CloseableComponent::CloseableComponent( const Reference< XInterface >& _rxComponent ) :m_pImpl( new CloseableComponentImpl( _rxComponent ) ) { - DBG_CTOR( CloseableComponent, NULL ); } @@ -228,7 +216,6 @@ namespace utl { // close the component, deliver ownership to anybody who wants to veto the close m_pImpl->nf_closeComponent(); - DBG_DTOR( CloseableComponent, NULL ); } diff --git a/unotools/source/streaming/streamwrap.cxx b/unotools/source/streaming/streamwrap.cxx index 822f1a6d3eec..51868c4a716c 100644 --- a/unotools/source/streaming/streamwrap.cxx +++ b/unotools/source/streaming/streamwrap.cxx @@ -28,17 +28,10 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::io; using namespace ::com::sun::star::lang; - -//= OInputStreamWrapper - -DBG_NAME(OInputStreamWrapper) - OInputStreamWrapper::OInputStreamWrapper( SvStream& _rStream ) :m_pSvStream(&_rStream) ,m_bSvStreamOwner(false) { - DBG_CTOR(OInputStreamWrapper,NULL); - } @@ -46,8 +39,6 @@ OInputStreamWrapper::OInputStreamWrapper( SvStream* pStream, bool bOwner ) :m_pSvStream( pStream ) ,m_bSvStreamOwner( bOwner ) { - DBG_CTOR(OInputStreamWrapper,NULL); - } @@ -55,8 +46,6 @@ OInputStreamWrapper::~OInputStreamWrapper() { if( m_bSvStreamOwner ) delete m_pSvStream; - - DBG_DTOR(OInputStreamWrapper,NULL); } |