diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-03-29 14:18:56 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-03-29 14:46:38 +0200 |
commit | 0e56df30f13a027cf49a4fa2f15817944b04aafc (patch) | |
tree | 9bbf765151af710812513b916a6350c92c3192e5 /package/source | |
parent | dfb4b897267079fb3aa92bfcdff981dbacb864c2 (diff) |
Namespace ZipUtils for the Inflater / Deflater classes.
Diffstat (limited to 'package/source')
-rw-r--r-- | package/source/zipapi/Deflater.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/Inflater.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/XUnbufferedStream.hxx | 2 | ||||
-rw-r--r-- | package/source/zipapi/ZipFile.cxx | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/package/source/zipapi/Deflater.cxx b/package/source/zipapi/Deflater.cxx index b2c1edb07cbc..cd90de5b09e3 100644 --- a/package/source/zipapi/Deflater.cxx +++ b/package/source/zipapi/Deflater.cxx @@ -41,6 +41,7 @@ using namespace com::sun::star::packages::zip::ZipConstants; using namespace com::sun::star; +using namespace ZipUtils; /** Provides general purpose compression using the ZLIB compression * library. diff --git a/package/source/zipapi/Inflater.cxx b/package/source/zipapi/Inflater.cxx index 26ba278cc9de..a32a0007f541 100644 --- a/package/source/zipapi/Inflater.cxx +++ b/package/source/zipapi/Inflater.cxx @@ -39,6 +39,7 @@ #include <string.h> // for memset using namespace com::sun::star::uno; +using namespace ZipUtils; /** Provides general purpose decompression using the ZLIB library */ diff --git a/package/source/zipapi/XUnbufferedStream.hxx b/package/source/zipapi/XUnbufferedStream.hxx index 0de13efd6340..320031f515dd 100644 --- a/package/source/zipapi/XUnbufferedStream.hxx +++ b/package/source/zipapi/XUnbufferedStream.hxx @@ -59,7 +59,7 @@ protected: ZipEntry maEntry; rtl::Reference < EncryptionData > mxData; rtlCipher maCipher; - Inflater maInflater; + ZipUtils::Inflater maInflater; sal_Bool mbRawStream, mbWrappedRaw, mbFinished; sal_Int16 mnHeaderToRead; sal_Int64 mnZipCurrent, mnZipEnd, mnZipSize, mnMyCurrent; diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx index 080005b66128..4c6115f21768 100644 --- a/package/source/zipapi/ZipFile.cxx +++ b/package/source/zipapi/ZipFile.cxx @@ -62,6 +62,7 @@ using namespace com::sun::star::packages::zip; using namespace com::sun::star::packages::zip::ZipConstants; using rtl::OUString; +using ZipUtils::Inflater; /** This class is used to read entries from a zip file */ |