summaryrefslogtreecommitdiff
path: root/package/source
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-09-14 13:55:03 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-09-14 13:55:03 +0000
commit1818001cdb2459be2212f001d0175febab5e3420 (patch)
treefe378fbd20cbd6c078dc8e69a03ae8a11fe24f62 /package/source
parentf92fe1551f73d7c3a69aa5a5eb27abbefbc378fa (diff)
#89303# use local ZipEntry
Diffstat (limited to 'package/source')
-rw-r--r--package/source/zipapi/XFileStream.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/package/source/zipapi/XFileStream.hxx b/package/source/zipapi/XFileStream.hxx
index 4236177d1e41..1dc04f9083ed 100644
--- a/package/source/zipapi/XFileStream.hxx
+++ b/package/source/zipapi/XFileStream.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XFileStream.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: mtg $ $Date: 2001-09-05 18:48:26 $
+ * last change: $Author: mtg $ $Date: 2001-09-14 14:55:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,15 +79,15 @@
#ifndef _CPPUHELPER_WEAK_HXX_
#include <cppuhelper/weak.hxx>
#endif
-#ifndef COM_SUN_STAR_PACKAGES_ZIP_ZIPENTRY_HPP
-#include <com/sun/star/packages/zip/ZipEntry.hpp>
-#endif
#ifndef _VOS_REF_H_
#include <vos/ref.hxx>
#endif
#ifndef _INFLATER_HXX
#include <Inflater.hxx>
#endif
+#ifndef _ZIP_ENTRY_HXX_
+#include <ZipEntry.hxx>
+#endif
class EncryptionData;
typedef void* rtlCipher;
@@ -102,7 +102,7 @@ protected:
com::sun::star::uno::Reference < com::sun::star::io::XSeekable > mxTempSeek;
com::sun::star::uno::Reference < com::sun::star::io::XOutputStream > mxTempOut;
com::sun::star::uno::Sequence < sal_Int8 > maBuffer, maCompBuffer;
- com::sun::star::packages::zip::ZipEntry maEntry;
+ ZipEntry maEntry;
vos::ORef < EncryptionData > mxData;
rtlCipher maCipher;
Inflater maInflater;
@@ -111,7 +111,7 @@ protected:
void fill( sal_Int64 nUntil );
public:
- XFileStream( com::sun::star::packages::zip::ZipEntry & rEntry,
+ XFileStream( ZipEntry & rEntry,
com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xNewZipStream,
com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xNewTempStream,
const vos::ORef < EncryptionData > &rData,