diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-21 10:03:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-21 15:30:13 +0200 |
commit | fe1e1d1292973211f0edfa64c05279ca59634652 (patch) | |
tree | 49e5c18c7793d72aaf8c0517bee3268d256bfa6a /include | |
parent | faac2327e95b5ed735ddb3f5f76a583bbe504b52 (diff) |
A single ZCodec ctor suffices
Change-Id: Ib831b80afcdde98928a2759616810923348f65e8
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/zcodec.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/tools/zcodec.hxx b/include/tools/zcodec.hxx index 8bbbcd66ddd8..867e27a86f0a 100644 --- a/include/tools/zcodec.hxx +++ b/include/tools/zcodec.hxx @@ -74,8 +74,7 @@ private: void ImplWriteBack(); public: - ZCodec( sal_uIntPtr nInBuf, sal_uIntPtr nOutBuf, sal_uIntPtr nMemUsage = MAX_MEM_USAGE ); - ZCodec(); + ZCodec( sal_uIntPtr nInBuf = DEFAULT_IN_BUFSIZE, sal_uIntPtr nOutBuf = DEFAULT_OUT_BUFSIZE, sal_uIntPtr nMemUsage = MAX_MEM_USAGE ); virtual ~ZCodec(); virtual void BeginCompression( sal_uIntPtr nCompressMethod = ZCODEC_DEFAULT ); |