summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/explode.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/explode.hxx')
-rw-r--r--lotuswordpro/source/filter/explode.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/explode.hxx b/lotuswordpro/source/filter/explode.hxx
index 01e5ec97b8de..a313c55dd2bd 100644
--- a/lotuswordpro/source/filter/explode.hxx
+++ b/lotuswordpro/source/filter/explode.hxx
@@ -63,11 +63,10 @@ class SvStream;
class HuffmanTreeNode
{
-public:
std::unique_ptr<HuffmanTreeNode> left;
std::unique_ptr<HuffmanTreeNode> right;
sal_uInt32 value;
-
+public:
explicit HuffmanTreeNode(sal_uInt32 value = 0xffffffff) ;
~HuffmanTreeNode() ;
HuffmanTreeNode * InsertNode(sal_uInt32 nValue, const sal_Char * pInCode);