summaryrefslogtreecommitdiff
path: root/include/package
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-10-22 15:31:16 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-10-22 16:03:20 +0200
commit87cb3a7c9609a298980e7384633aa383d69eca34 (patch)
tree6e3560805900f5fa3c12b84fefdd7f7221781067 /include/package
parent8b292a29a4dbfef15eb0475b71d33330bb55d3b2 (diff)
unusedcode: Remove Deflater::setLevel
Which makes bSetParams always false; remove that too, together with nLevel. Change-Id: I94a4ec14b2b2c498d749ef72c1b6b118bba37076
Diffstat (limited to 'include/package')
-rw-r--r--include/package/Deflater.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/package/Deflater.hxx b/include/package/Deflater.hxx
index ad73f280ceee..bd6d815f270d 100644
--- a/include/package/Deflater.hxx
+++ b/include/package/Deflater.hxx
@@ -35,8 +35,7 @@ protected:
com::sun::star::uno::Sequence< sal_Int8 > sInBuffer;
bool bFinish;
bool bFinished;
- bool bSetParams;
- sal_Int32 nLevel, nStrategy;
+ sal_Int32 nStrategy;
sal_Int64 nOffset, nLength;
z_stream* pStream;
@@ -47,7 +46,6 @@ 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 setLevel( sal_Int32 nNewLevel );
bool SAL_CALL needsInput( );
void SAL_CALL finish( );
bool SAL_CALL finished( ) { return bFinished;}