diff options
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/zcodec.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/zcodec.hxx b/include/tools/zcodec.hxx index f5dd99ac7acb..57af7c50c2a1 100644 --- a/include/tools/zcodec.hxx +++ b/include/tools/zcodec.hxx @@ -58,7 +58,7 @@ class SAL_WARN_UNUSED TOOLS_DLLPUBLIC ZCodec void UpdateCRC( sal_uInt8 const * pSource, long nDatSize ); public: - ZCodec( sal_uIntPtr nInBuf = 0x8000UL, sal_uIntPtr nOutBuf = 0x8000UL ); + ZCodec( size_t nInBufSize = 32768, size_t nOutBufSize = 32768 ); ~ZCodec(); void BeginCompression( int nCompressLevel = ZCODEC_DEFAULT_COMPRESSION, bool updateCrc = false, bool gzLib = false ); |