summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/biffcodec.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/biffcodec.cxx')
-rw-r--r--sc/source/filter/oox/biffcodec.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/sc/source/filter/oox/biffcodec.cxx b/sc/source/filter/oox/biffcodec.cxx
index 74c0072bff8c..fa7b55f00229 100644
--- a/sc/source/filter/oox/biffcodec.cxx
+++ b/sc/source/filter/oox/biffcodec.cxx
@@ -27,15 +27,11 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
using ::oox::core::FilterBase;
-
-
BiffDecoderBase::BiffDecoderBase() :
mbValid( false )
{
@@ -69,8 +65,6 @@ void BiffDecoderBase::decode( sal_uInt8* pnDestData, const sal_uInt8* pnSrcData,
}
}
-
-
BiffDecoder_XOR::BiffDecoder_XOR( const BiffDecoder_XOR& rDecoder ) :
BiffDecoderBase(), // must be called to prevent compiler warning
maCodec( ::oox::core::BinaryCodec_XOR::CODEC_EXCEL ),
@@ -130,8 +124,6 @@ void BiffDecoder_XOR::implDecode( sal_uInt8* pnDestData, const sal_uInt8* pnSrcD
maCodec.decode( pnDestData, pnSrcData, nBytes );
}
-
-
namespace {
/** Returns the block index of the passed stream position for RCF decryption. */
@@ -148,8 +140,6 @@ sal_Int32 lclGetRcfOffset( sal_Int64 nStreamPos )
} // namespace
-
-
BiffDecoder_RCF::BiffDecoder_RCF( const BiffDecoder_RCF& rDecoder ) :
BiffDecoderBase(), // must be called to prevent compiler warning
maEncryptionData( rDecoder.maEncryptionData ),
@@ -231,8 +221,6 @@ void BiffDecoder_RCF::implDecode( sal_uInt8* pnDestData, const sal_uInt8* pnSrcD
}
}
-
-
BiffCodecHelper::BiffCodecHelper( const WorkbookHelper& rHelper ) :
WorkbookHelper( rHelper )
{
@@ -244,8 +232,6 @@ void BiffCodecHelper::cloneDecoder( BiffInputStream& rStrm )
rStrm.setDecoder( BiffDecoderRef( mxDecoder->clone() ) );
}
-
-
} // namespace xls
} // namespace oox