diff options
-rw-r--r-- | svtools/source/contnr/treelistentry.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/svtools/source/contnr/treelistentry.cxx b/svtools/source/contnr/treelistentry.cxx index 60a960fb5f13..378a64689f4f 100644 --- a/svtools/source/contnr/treelistentry.cxx +++ b/svtools/source/contnr/treelistentry.cxx @@ -57,10 +57,13 @@ SvTreeListEntry::SvTreeListEntry() { } -SvTreeListEntry::SvTreeListEntry(const SvTreeListEntry& r) : - pParent(NULL), - nAbsPos(r.nAbsPos), - nListPos(r.nListPos & 0x7FFFFFFF) +SvTreeListEntry::SvTreeListEntry(const SvTreeListEntry& r) + : pParent(NULL) + , nAbsPos(r.nAbsPos) + , nListPos(r.nListPos & 0x7FFFFFFF) + , bIsMarked(r.bIsMarked) + , pUserData(r.pUserData) + , nEntryFlags(r.nEntryFlags) { SvTreeListEntries::const_iterator it = r.maChildren.begin(), itEnd = r.maChildren.end(); for (; it != itEnd; ++it) |