From 453902001c83cff50277a509ba8f08f7b110287b Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 23 Dec 2003 09:18:29 +0000 Subject: [PATCH] Removed osg:: from NodeVisitor and Group base class calls --- src/osgPlugins/txp/TXPIO.cpp | 2 +- src/osgPlugins/txp/TXPNode.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/txp/TXPIO.cpp b/src/osgPlugins/txp/TXPIO.cpp index cf10e06da..452f407ea 100644 --- a/src/osgPlugins/txp/TXPIO.cpp +++ b/src/osgPlugins/txp/TXPIO.cpp @@ -52,7 +52,7 @@ public: virtual void apply(osg::Node& node) { _fw.writeObject(node); - osg::NodeVisitor::apply(node); + NodeVisitor::apply(node); } osgDB::Output &_fw; }; diff --git a/src/osgPlugins/txp/TXPNode.cpp b/src/osgPlugins/txp/TXPNode.cpp index 68b72dba0..bdc415e13 100644 --- a/src/osgPlugins/txp/TXPNode.cpp +++ b/src/osgPlugins/txp/TXPNode.cpp @@ -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)