summaryrefslogtreecommitdiff
path: root/unotools/source/streaming
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/streaming
parenta9582c05f854cad02710178ab7fa79498573269e (diff)
Remove remaining DBG_CTOR etc. remnants from unotools
Change-Id: Ife6cecde4a9e89146493737d06cd9f0d8a041610
Diffstat (limited to 'unotools/source/streaming')
-rw-r--r--unotools/source/streaming/streamwrap.cxx11
1 files changed, 0 insertions, 11 deletions
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);
}