diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-27 14:26:54 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-11-17 10:49:23 +0100 |
commit | 7088166a67d1270f93ac15bccbc89343b2271fa5 (patch) | |
tree | 355b3ae6b9a4b27eb185290c8ac4351a4364cd55 /include | |
parent | a42aa52acbbff738a00299de172ca85cb001d840 (diff) |
Simplify input parameters to just take the sequence
Change-Id: Ic2538ca8b0f7261064e1dfbf3884dd452003c797
Diffstat (limited to 'include')
-rw-r--r-- | include/package/Deflater.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/package/Deflater.hxx b/include/package/Deflater.hxx index bd6d815f270d..d2be24743d67 100644 --- a/include/package/Deflater.hxx +++ b/include/package/Deflater.hxx @@ -46,6 +46,7 @@ public: ~Deflater(); Deflater(sal_Int32 nSetLevel, bool bNowrap); void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer, sal_Int32 nNewOffset, sal_Int32 nNewLength ); + void SAL_CALL setInputSegment( const ::com::sun::star::uno::Sequence< sal_Int8 >& rBuffer ); bool SAL_CALL needsInput( ); void SAL_CALL finish( ); bool SAL_CALL finished( ) { return bFinished;} |