summaryrefslogtreecommitdiffstats
path: root/src/Node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Node.cpp')
-rw-r--r--src/Node.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Node.cpp b/src/Node.cpp
index e513862..c6a5b51 100644
--- a/src/Node.cpp
+++ b/src/Node.cpp
@@ -20,6 +20,7 @@
20 20
21#include <stdlib.h> 21#include <stdlib.h>
22#include <plist/Node.h> 22#include <plist/Node.h>
23#include <plist/Structure.h>
23 24
24namespace PList 25namespace PList
25{ 26{
@@ -96,6 +97,16 @@ Node* Node::GetParent()
96 97
97void Node::SetParent(Node* parent) 98void Node::SetParent(Node* parent)
98{ 99{
100 //Unlink node first
101 if ( NULL != _parent )
102 {
103 plist_type type = plist_get_node_type(_parent);
104 if (PLIST_ARRAY ==type || PLIST_DICT == type )
105 {
106 Structure* s = static_cast<Structure*>(_parent);
107 s->Remove(this);
108 }
109 }
99 _parent = parent; 110 _parent = parent;
100} 111}
101 112