summaryrefslogtreecommitdiff
path: root/unotools/source/misc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-28 16:17:06 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-28 17:26:08 +0100
commita6c9d0046ae802629f5b5a13575605dac018aaa7 (patch)
tree9c62caa84421f0268c3a50558bbfacfddcf313de /unotools/source/misc
parenta9582c05f854cad02710178ab7fa79498573269e (diff)
Remove remaining DBG_CTOR etc. remnants from unotools
Change-Id: Ife6cecde4a9e89146493737d06cd9f0d8a041610
Diffstat (limited to 'unotools/source/misc')
-rw-r--r--unotools/source/misc/sharedunocomponent.cxx13
1 files changed, 0 insertions, 13 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 );
}