diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Array.cpp | 2 | ||||
| -rw-r--r-- | src/Dictionary.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Array.cpp b/src/Array.cpp index 4f34e58..f6e1297 100644 --- a/src/Array.cpp +++ b/src/Array.cpp | |||
| @@ -51,7 +51,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) | |||
| 51 | array_fill(this, _array, _node); | 51 | array_fill(this, _array, _node); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | Array::Array(const PList::Array& a) : Structure() | 54 | Array::Array(const PList::Array& a) |
| 55 | { | 55 | { |
| 56 | _array.clear(); | 56 | _array.clear(); |
| 57 | _node = plist_copy(a.GetPlist()); | 57 | _node = plist_copy(a.GetPlist()); |
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp index 4fd73ef..cc4626b 100644 --- a/src/Dictionary.cpp +++ b/src/Dictionary.cpp | |||
| @@ -50,7 +50,7 @@ Dictionary::Dictionary(plist_t node, Node* parent) : Structure(parent) | |||
| 50 | dictionary_fill(this, _map, _node); | 50 | dictionary_fill(this, _map, _node); |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | Dictionary::Dictionary(const PList::Dictionary& d) : Structure() | 53 | Dictionary::Dictionary(const PList::Dictionary& d) |
| 54 | { | 54 | { |
| 55 | for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++) | 55 | for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++) |
| 56 | { | 56 | { |
