summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx')
-rw-r--r--xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx b/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx
index f2c148c788e3..6ca159e8a709 100644
--- a/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx
+++ b/xmlhelp/source/cxxhelp/inc/util/Decompressor.hxx
@@ -41,7 +41,7 @@ namespace xmlsearch {
virtual sal_Int32 getNextByte() = 0;
- virtual void initReading()
+ void initReading()
{
toRead_ = 0;
}
@@ -62,8 +62,7 @@ namespace xmlsearch {
{
public:
- StreamDecompressor( RandomAccessStream* in )
- : in_( in )
+ StreamDecompressor( RandomAccessStream* )
{
}
@@ -71,11 +70,6 @@ namespace xmlsearch {
virtual sal_Int32 getNextByte() SAL_OVERRIDE;
-
- private:
-
- RandomAccessStream* in_;
-
};