diff options
author | Dennis Francis <dennisfrancis.in@gmail.com> | 2015-04-15 22:22:16 +0530 |
---|---|---|
committer | Kohei Yoshida <libreoffice@kohei.us> | 2015-04-27 00:33:57 +0000 |
commit | f0edb677f09ad338e22ac3b5d91497b4479e0b3c (patch) | |
tree | bbd2b4a48538b3b019108460309be52724005022 /include/tools | |
parent | 89aee8b17f8dd4eb2213a7844a9ef26951e39775 (diff) |
enhancement : tdf#90225 Cannot open compressed csv files from calc
Change-Id: I5098fd25f1747b49e47e360f017ee1112a242771
Reviewed-on: https://gerrit.libreoffice.org/15108
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Tested-by: Kohei Yoshida <libreoffice@kohei.us>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/zcodec.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/tools/zcodec.hxx b/include/tools/zcodec.hxx index 8d393265f82f..ac389ae12f2b 100644 --- a/include/tools/zcodec.hxx +++ b/include/tools/zcodec.hxx @@ -67,6 +67,7 @@ public: long Compress( SvStream& rIStm, SvStream& rOStm ); long Decompress( SvStream& rIStm, SvStream& rOStm ); + bool AttemptDecompression( SvStream& rIStm, SvStream& rOStm, bool updateCrc = false, bool gzLib = false ); long Write( SvStream& rOStm, const sal_uInt8* pData, sal_uIntPtr nSize ); long Read( SvStream& rIStm, sal_uInt8* pData, sal_uIntPtr nSize ); |