summaryrefslogtreecommitdiff
path: root/oox/source/helper/binarystreambase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/helper/binarystreambase.cxx')
-rw-r--r--oox/source/helper/binarystreambase.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/oox/source/helper/binarystreambase.cxx b/oox/source/helper/binarystreambase.cxx
index 9e86080f0565..6b314fc5c18b 100644
--- a/oox/source/helper/binarystreambase.cxx
+++ b/oox/source/helper/binarystreambase.cxx
@@ -24,13 +24,9 @@
namespace oox {
-
-
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::uno;
-
-
BinaryStreamBase::~BinaryStreamBase()
{
}
@@ -57,8 +53,6 @@ void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos
}
}
-
-
BinaryXSeekableStream::BinaryXSeekableStream( const Reference< XSeekable >& rxSeekable ) :
BinaryStreamBase( mxSeekable.is() ),
mxSeekable( rxSeekable )
@@ -114,8 +108,6 @@ void BinaryXSeekableStream::close()
mbEof = true;
}
-
-
SequenceSeekableStream::SequenceSeekableStream( const StreamDataSequence& rData ) :
BinaryStreamBase( true ),
mpData( &rData ),
@@ -148,8 +140,6 @@ void SequenceSeekableStream::close()
mbEof = true;
}
-
-
} // namespace oox
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */