diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-18 15:41:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-18 16:29:08 +0200 |
commit | 9c78b8a72895831b33731e17ca7f8c825c19827a (patch) | |
tree | 23f4934f9d86ce5c5cf0bc492e0ec32e67070609 /vcl/unx | |
parent | 76650583fa8f9689de0d338a51587b97fda0426b (diff) |
remove unused crc functionality from ZCodec
Change-Id: I3e57e815b538ad5749b4bab3d4ef8e295cbe116b
Reviewed-on: https://gerrit.libreoffice.org/79098
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/printer/ppdparser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx index 68cf1ca9e12d..0d520e09d219 100644 --- a/vcl/unx/generic/printer/ppdparser.cxx +++ b/vcl/unx/generic/printer/ppdparser.cxx @@ -309,7 +309,7 @@ void PPDDecompressStream::Open( const OUString& i_rFile ) // so let's try to decompress the stream mpMemStream.reset( new SvMemoryStream( 4096, 4096 ) ); ZCodec aCodec; - aCodec.BeginCompression( ZCODEC_DEFAULT_COMPRESSION, false, true ); + aCodec.BeginCompression( ZCODEC_DEFAULT_COMPRESSION, /*gzLib*/true ); long nComp = aCodec.Decompress( *mpFileStream, *mpMemStream ); aCodec.EndCompression(); if( nComp < 0 ) |