Kaydet (Commit) a6c9d004 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove remaining DBG_CTOR etc. remnants from unotools

Change-Id: Ife6cecde4a9e89146493737d06cd9f0d8a041610
üst a9582c05
......@@ -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 );
}
......
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment