summaryrefslogtreecommitdiff
path: root/unotools/source/streaming/streamwrap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/streaming/streamwrap.cxx')
-rw-r--r--unotools/source/streaming/streamwrap.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unotools/source/streaming/streamwrap.cxx b/unotools/source/streaming/streamwrap.cxx
index dfce39da1699..72aee2066eed 100644
--- a/unotools/source/streaming/streamwrap.cxx
+++ b/unotools/source/streaming/streamwrap.cxx
@@ -28,9 +28,9 @@ 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 )
@@ -157,9 +157,9 @@ void OInputStreamWrapper::checkError() const
throw stario::NotConnectedException(OUString(), const_cast<staruno::XWeak*>(static_cast<const staruno::XWeak*>(this)));
}
-//==================================================================
+
//= OSeekableInputStreamWrapper
-//==================================================================
+
OSeekableInputStreamWrapper::OSeekableInputStreamWrapper(SvStream& _rStream)
{
@@ -211,9 +211,9 @@ sal_Int64 SAL_CALL OSeekableInputStreamWrapper::getLength( ) throw (IOException
return (sal_Int64)nEndPos;
}
-//==================================================================
+
//= OOutputStreamWrapper
-//==================================================================
+
OOutputStreamWrapper::OOutputStreamWrapper(SvStream& _rStream):
rStream(_rStream)
@@ -253,9 +253,9 @@ void OOutputStreamWrapper::checkError() const
throw stario::NotConnectedException(OUString(), const_cast<staruno::XWeak*>(static_cast<const staruno::XWeak*>(this)));
}
-//==================================================================
+
//= OSeekableOutputStreamWrapper
-//==================================================================
+
OSeekableOutputStreamWrapper::OSeekableOutputStreamWrapper(SvStream& _rStream)
:OOutputStreamWrapper(_rStream)