summaryrefslogtreecommitdiff
path: root/include/package
diff options
context:
space:
mode:
Diffstat (limited to 'include/package')
-rw-r--r--include/package/Deflater.hxx3
-rw-r--r--include/package/Inflater.hxx3
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;