summaryrefslogtreecommitdiff
path: root/package/inc/ZipOutputStream.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-10-09 13:15:22 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-10-10 13:50:04 +0200
commitae0756d8266bb92dfe04473a6b15cbb3fb7a0b69 (patch)
treee26b985173dff25adb9c2ae3694e82e30eae8251 /package/inc/ZipOutputStream.hxx
parent9f495d128e9e1cc05b2e1f56f11f1ac4055d738d (diff)
ZipOutputStream: No need to explicitly set default values
Change-Id: Ia3a20e0692e658d847e1b825fc97e32ac8a1854b
Diffstat (limited to 'package/inc/ZipOutputStream.hxx')
-rw-r--r--package/inc/ZipOutputStream.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/package/inc/ZipOutputStream.hxx b/package/inc/ZipOutputStream.hxx
index a8d106be8dc1..146e6427eebe 100644
--- a/package/inc/ZipOutputStream.hxx
+++ b/package/inc/ZipOutputStream.hxx
@@ -52,7 +52,7 @@ protected:
CRC32 m_aCRC;
ByteChucker m_aChucker;
ZipEntry *m_pCurrentEntry;
- sal_Int16 m_nMethod, m_nLevel, m_nDigested;
+ sal_Int16 m_nDigested;
bool m_bFinished, m_bEncryptCurrentEntry;
ZipPackageStream* m_pCurrentStream;
@@ -69,10 +69,6 @@ public:
throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
// XZipOutputStream interfaces
- void SAL_CALL setMethod( sal_Int32 nNewMethod )
- throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL setLevel( sal_Int32 nNewLevel )
- throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL putNextEntry( ZipEntry& rEntry,
ZipPackageStream* pStream,
bool bEncrypt = false )