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/Array.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Array.cpp') diff --git a/src/Array.cpp b/src/Array.cpp index 3069314..eb83ac4 100644 --- a/src/Array.cpp +++ b/src/Array.cpp @@ -40,7 +40,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) for (uint32_t i = 0; i < size; i++) { plist_t subnode = plist_array_get_item(_node, i); - _array.push_back( Utils::FromPlist(subnode, this) ); + _array.push_back( Node::FromPlist(subnode, this) ); } } @@ -53,7 +53,7 @@ Array::Array(PList::Array& a) : Structure() for (uint32_t i = 0; i < size; i++) { plist_t subnode = plist_array_get_item(_node, i); - _array.push_back( Utils::FromPlist(subnode, this) ); + _array.push_back( Node::FromPlist(subnode, this) ); } } @@ -72,7 +72,7 @@ Array& Array::operator=(PList::Array& a) for (uint32_t i = 0; i < size; i++) { plist_t subnode = plist_array_get_item(_node, i); - _array.push_back( Utils::FromPlist(subnode, this) ); + _array.push_back( Node::FromPlist(subnode, this) ); } return *this; } -- cgit v1.1-32-gdbae