From fe1e1d1292973211f0edfa64c05279ca59634652 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 21 May 2014 10:03:17 +0200 Subject: A single ZCodec ctor suffices Change-Id: Ib831b80afcdde98928a2759616810923348f65e8 --- include/tools/zcodec.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include') 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 ); -- cgit