Removed osg:: from NodeVisitor and Group base class calls

This commit is contained in:
Robert Osfield
2003-12-23 09:18:29 +00:00
parent ca7a80685d
commit 453902001c
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ public:
virtual void apply(osg::Node& node)
{
_fw.writeObject(node);
osg::NodeVisitor::apply(node);
NodeVisitor::apply(node);
}
osgDB::Output &_fw;
};

View File

@@ -65,7 +65,7 @@ bool TXPNode::computeBound() const
_bsphere_computed = true;
return true;
}
return osg::Group::computeBound();
return Group::computeBound();
}
void TXPNode::setArchiveName(const std::string& archiveName)