diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-29 14:11:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-30 06:26:26 +0000 |
commit | 90305526ee48c855f9a2b3b4d730ea0bfb079119 (patch) | |
tree | 629f00210bb52847ef8aae9f14bf81143b5c489b /sc | |
parent | a34b33d2b900d3d1ea1ac806bc584846dc9d3fbe (diff) |
loplugin:unusedenumconstants
Change-Id: I628a0114e56ec25926bd08d159c61cfecb719a1c
Reviewed-on: https://gerrit.libreoffice.org/35854
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/biffcodec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/biffcodec.cxx b/sc/source/filter/oox/biffcodec.cxx index 2f490f2ea2d5..19a8399cd04f 100644 --- a/sc/source/filter/oox/biffcodec.cxx +++ b/sc/source/filter/oox/biffcodec.cxx @@ -54,7 +54,7 @@ BiffDecoderBase::~BiffDecoderBase() BiffDecoder_XOR::BiffDecoder_XOR( const BiffDecoder_XOR& rDecoder ) : BiffDecoderBase(), // must be called to prevent compiler warning - maCodec( ::oox::core::BinaryCodec_XOR::CODEC_EXCEL ), + maCodec( ::oox::core::BinaryCodec_XOR::CodecType::Excel ), maEncryptionData( rDecoder.maEncryptionData ), mnKey( rDecoder.mnKey ), mnHash( rDecoder.mnHash ) |