From: david Date: Fri, 10 May 2002 22:58:03 +0000 (+0000) Subject: Modified to work with the new SGPropertyNode_ptr class. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c7e6459c646b937239bfb48f7888b96da585fd57;p=simgear.git Modified to work with the new SGPropertyNode_ptr class. --- diff --git a/simgear/misc/props_test.cxx b/simgear/misc/props_test.cxx index 4e48b6c5..b98e6e6b 100644 --- a/simgear/misc/props_test.cxx +++ b/simgear/misc/props_test.cxx @@ -313,7 +313,7 @@ test_property_nodes () cout << endl; cout << "Looking for all /hack[0]/bar children" << endl; - vector bar = child->getChildren("bar"); + vector bar = child->getChildren("bar"); cout << "There are " << bar.size() << " matches" << endl; for (int i = 0; i < (int)bar.size(); i++) cout << bar[i]->getName() << '[' << bar[i]->getIndex() << ']' << endl;