aboutsummaryrefslogtreecommitdiff
path: root/src/tafnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tafnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tafnode.cpp b/src/tafnode.cpp
index 3060606..b9a4a24 100644
--- a/src/tafnode.cpp
+++ b/src/tafnode.cpp
@@ -45,7 +45,7 @@ const Bu::TafNode::PropList &Bu::TafNode::getProperties( const Bu::FString &sNam
45 return hProp.get( sName ); 45 return hProp.get( sName );
46} 46}
47 47
48const Bu::TafNode::NodeList &Bu::TafNode::getNodes( const Bu::FString &sName ) const 48const Bu::TafNode::NodeList &Bu::TafNode::getChildren( const Bu::FString &sName ) const
49{ 49{
50 return hChildren.get( sName ); 50 return hChildren.get( sName );
51} 51}
@@ -55,9 +55,9 @@ const Bu::FString &Bu::TafNode::getProperty( const Bu::FString &sName ) const
55 return getProperties( sName ).first(); 55 return getProperties( sName ).first();
56} 56}
57 57
58const Bu::TafNode *Bu::TafNode::getNode( const Bu::FString &sName ) const 58const Bu::TafNode *Bu::TafNode::getChild( const Bu::FString &sName ) const
59{ 59{
60 return getNodes( sName ).first(); 60 return getChildren( sName ).first();
61} 61}
62 62
63void Bu::TafNode::setName( const Bu::FString &sName ) 63void Bu::TafNode::setName( const Bu::FString &sName )