diff options
Diffstat (limited to 'src/Dictionary.cpp')
-rw-r--r-- | src/Dictionary.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp index 2a86d59..1829e9a 100644 --- a/src/Dictionary.cpp +++ b/src/Dictionary.cpp @@ -40,7 +40,7 @@ Dictionary::Dictionary(plist_t node, Node* parent) : Structure(parent) plist_dict_next_item(_node, it, &key, &subnode); while (subnode) { - _map[std::string(key)] = Utils::FromPlist(subnode, this); + _map[std::string(key)] = Node::FromPlist(subnode, this); subnode = NULL; free(key); @@ -68,7 +68,7 @@ Dictionary::Dictionary(PList::Dictionary& d) : Structure() plist_dict_next_item(_node, it, &key, &subnode); while (subnode) { - _map[std::string(key)] = Utils::FromPlist(subnode, this); + _map[std::string(key)] = Node::FromPlist(subnode, this); subnode = NULL; free(key); @@ -96,7 +96,7 @@ Dictionary& Dictionary::operator=(PList::Dictionary& d) plist_dict_next_item(_node, it, &key, &subnode); while (subnode) { - _map[std::string(key)] = Utils::FromPlist(subnode, this); + _map[std::string(key)] = Node::FromPlist(subnode, this); subnode = NULL; free(key); |