summaryrefslogtreecommitdiff
path: root/package/inc
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-05-31 08:38:31 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-05-31 08:38:31 +0000
commitf23c0fc3c18e2d33c4e6f5bc5cb8edceea979442 (patch)
tree45e70b50472b9eb5ae84a329802fc682778013f3 /package/inc
parent7782f736c5900340e15a5a36d408ea25470e72d6 (diff)
#87099# remove unused member and add offset and length parameters to 'rawWrite'
Diffstat (limited to 'package/inc')
-rw-r--r--package/inc/ZipOutputStream.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx
index 1ee6ef2a4945..11fcb8a50f21 100644
--- a/package/inc/ZipOutputStream.hxx
+++ b/package/inc/ZipOutputStream.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ZipOutputStream.hxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: mtg $ $Date: 2001-05-08 13:49:54 $
+ * last change: $Author: mtg $ $Date: 2001-05-31 09:38:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -101,14 +101,13 @@ protected:
sal_Int16 nLevel;
sal_Bool bFinished;
sal_Bool bEncryptCurrentEntry;
- sal_Int32 nCurrentDataBegin;
public:
ZipOutputStream( com::sun::star::uno::Reference < com::sun::star::io::XOutputStream > &xOStream, sal_Int32 nNewBufferSize);
~ZipOutputStream(void);
// rawWrite to support a direct write to the output stream
- void SAL_CALL rawWrite( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer)
+ void SAL_CALL rawWrite( ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength )
throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
void SAL_CALL rawCloseEntry( )
throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);