From e91836fb3169cbca7c58c2680b591ec7f081b6b3 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Wed, 11 Nov 2009 21:40:26 +0100 Subject: Fix removal of the Utils class. --- src/Dictionary.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Dictionary.cpp') 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); -- cgit v1.1-32-gdbae