diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-31 14:15:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-01 07:14:39 +0100 |
commit | ee1d6af9b73256e13975ec4e95aff6d69a00fed9 (patch) | |
tree | 3cbc356963562fe04829d49c37c38e8aeab84314 /include/package | |
parent | 5d618d73ed8669a75b7b01774f6ea51e99e5b740 (diff) |
loplugin:finalclasses in package
Change-Id: I020ea1f3bea5c3deab05b9a2154102548c7622cf
Reviewed-on: https://gerrit.libreoffice.org/44132
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/package')
-rw-r--r-- | include/package/Deflater.hxx | 3 | ||||
-rw-r--r-- | include/package/Inflater.hxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/package/Deflater.hxx b/include/package/Deflater.hxx index d29cea948889..dc2e6df699af 100644 --- a/include/package/Deflater.hxx +++ b/include/package/Deflater.hxx @@ -27,11 +27,10 @@ struct z_stream_s; namespace ZipUtils { -class DLLPUBLIC_PACKAGE Deflater +class DLLPUBLIC_PACKAGE Deflater final { typedef struct z_stream_s z_stream; -protected: css::uno::Sequence< sal_Int8 > sInBuffer; bool bFinish; bool bFinished; diff --git a/include/package/Inflater.hxx b/include/package/Inflater.hxx index a974534bc901..c978c8a8c918 100644 --- a/include/package/Inflater.hxx +++ b/include/package/Inflater.hxx @@ -27,11 +27,10 @@ struct z_stream_s; namespace ZipUtils { -class DLLPUBLIC_PACKAGE Inflater +class DLLPUBLIC_PACKAGE Inflater final { typedef struct z_stream_s z_stream; -protected: bool bFinished, bNeedDict; sal_Int32 nOffset, nLength, nLastInflateError; z_stream* pStream; |