diff options
| author | 2009-10-28 18:08:33 +0100 | |
|---|---|---|
| committer | 2009-10-28 18:08:33 +0100 | |
| commit | fed2573566c2da1c5489260069a99ae9d2abf255 (patch) | |
| tree | e86071e7e6e6616676a290eff504a223efe13d1d /src | |
| parent | 1bc333972bb5d5b45ba8908f1b12015300d88711 (diff) | |
| download | libplist-fed2573566c2da1c5489260069a99ae9d2abf255.tar.gz libplist-fed2573566c2da1c5489260069a99ae9d2abf255.tar.bz2 | |
Unlink previous node in SetParent().
Diffstat (limited to 'src')
| -rw-r--r-- | src/Node.cpp | 11 |
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 | ||
| 24 | namespace PList | 25 | namespace PList |
| 25 | { | 26 | { |
| @@ -96,6 +97,16 @@ Node* Node::GetParent() | |||
| 96 | 97 | ||
| 97 | void Node::SetParent(Node* parent) | 98 | void 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 | ||
