diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-09 13:15:22 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-10 13:50:04 +0200 |
commit | ae0756d8266bb92dfe04473a6b15cbb3fb7a0b69 (patch) | |
tree | e26b985173dff25adb9c2ae3694e82e30eae8251 /package/inc | |
parent | 9f495d128e9e1cc05b2e1f56f11f1ac4055d738d (diff) |
ZipOutputStream: No need to explicitly set default values
Change-Id: Ia3a20e0692e658d847e1b825fc97e32ac8a1854b
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ZipOutputStream.hxx | 6 |
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 ) |