summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/explode.cxx5
-rw-r--r--lotuswordpro/source/filter/lwppiece.hxx1
2 files changed, 1 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/explode.cxx b/lotuswordpro/source/filter/explode.cxx
index 207346c55a26..731c6bc099d9 100644
--- a/lotuswordpro/source/filter/explode.cxx
+++ b/lotuswordpro/source/filter/explode.cxx
@@ -451,11 +451,8 @@ void Decompression::fillArray()
}
}
-HuffmanTreeNode::HuffmanTreeNode(sal_uInt32 nValue )
+HuffmanTreeNode::HuffmanTreeNode(sal_uInt32 nValue):value(nValue)
{
- value = nValue;
- left = nullptr;
- right = nullptr;
}
HuffmanTreeNode::~HuffmanTreeNode()
{
diff --git a/lotuswordpro/source/filter/lwppiece.hxx b/lotuswordpro/source/filter/lwppiece.hxx
index 1aaa7453d272..5bfbae7e64bd 100644
--- a/lotuswordpro/source/filter/lwppiece.hxx
+++ b/lotuswordpro/source/filter/lwppiece.hxx
@@ -80,7 +80,6 @@ class LwpVirtualPiece : public LwpDLVList
public:
LwpVirtualPiece(LwpObjectHeader const & objHdr, LwpSvStream* pStrm):LwpDLVList(objHdr, pStrm)
{
- m_pOverride = nullptr;
}
virtual void Read() override