summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-05-08 12:58:22 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-05-08 12:58:22 +0000
commitcbde1894bd0092892f233d42bcca876b7210f325 (patch)
tree6ea44ce65f413d87b82505b1687f8bc1f66abfbb /package
parent53ddbecafebe6ca96560095e63166fab5fbe50d3 (diff)
Remove unused 'aSequence' member
Diffstat (limited to 'package')
-rw-r--r--package/source/zipapi/EntryInputStream.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/source/zipapi/EntryInputStream.hxx b/package/source/zipapi/EntryInputStream.hxx
index 0db70089cb56..96b9c7d3e1c6 100644
--- a/package/source/zipapi/EntryInputStream.hxx
+++ b/package/source/zipapi/EntryInputStream.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: EntryInputStream.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mtg $ $Date: 2001-04-30 18:17:44 $
+ * last change: $Author: mtg $ $Date: 2001-05-08 13:58:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,12 +85,12 @@
class EntryInputStream : public cppu::WeakImplHelper2< com::sun::star::io::XInputStream,
com::sun::star::io::XSeekable >
{
-private:
+protected:
com::sun::star::uno::Reference< com::sun::star::io::XInputStream > xStream;
com::sun::star::uno::Reference< com::sun::star::io::XSeekable > xSeek;
sal_Int64 nEnd, nCurrent, nUncompressedSize;
sal_Bool bRawStream, bHaveInMemory, bEncrypted;
- com::sun::star::uno::Sequence < sal_Int8 > aSequence, aBuffer;
+ com::sun::star::uno::Sequence < sal_Int8 > aBuffer;
const vos::ORef < EncryptionData > xEncryptionData;
const com::sun::star::packages::ZipEntry & rEntry;
Inflater aInflater;