summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/utlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/utlist.hxx')
-rw-r--r--lotuswordpro/source/filter/utlist.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/utlist.hxx b/lotuswordpro/source/filter/utlist.hxx
index ab53bfc52a8d..1e318bd9726b 100644
--- a/lotuswordpro/source/filter/utlist.hxx
+++ b/lotuswordpro/source/filter/utlist.hxx
@@ -69,7 +69,10 @@ UtDefClassP(CUtComparableListElmt);
class CUtListElmt
{
public: // Methods
- CUtListElmt() { cpNext = NULL; }
+ CUtListElmt()
+ : cpNext(NULL)
+ , cpPrev(NULL)
+ {}
CUtListElmt(pCUtListElmt pPrev) { InsertAfter(pPrev); }
CUtListElmt(pCUtList pList);
virtual ~CUtListElmt();