diff options
author | Jonathan Beck | 2009-11-11 21:40:26 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-11-11 21:40:26 +0100 |
commit | e91836fb3169cbca7c58c2680b591ec7f081b6b3 (patch) | |
tree | 88f81ef95e830fac10a7906dcd278f1d9a23a687 /src/Dictionary.cpp | |
parent | 8c6a809fafa6befff7e2b1adc3df2bdb47042dd1 (diff) | |
download | libplist-e91836fb3169cbca7c58c2680b591ec7f081b6b3.tar.gz libplist-e91836fb3169cbca7c58c2680b591ec7f081b6b3.tar.bz2 |
Fix removal of the Utils class.
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); |