From 4c95f0db1f3bf9937d1cd785ff0ad300bec1f007 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 12 Dec 2003 20:33:36 +0000 Subject: [PATCH] Fixed typo of s/getUpdateVisitor(). --- include/osgProducer/Viewer | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/osgProducer/Viewer b/include/osgProducer/Viewer index 8be3c93f8..0e104c6f4 100644 --- a/include/osgProducer/Viewer +++ b/include/osgProducer/Viewer @@ -91,13 +91,13 @@ class OSGPRODUCER_EXPORT Viewer : public OsgCameraGroup, public osgGA::GUIAction virtual void update(); /** set the update visitor which does the update traversal of the scene graph. Automatically called by the update() method.*/ - void setUpdateVistor(osg::NodeVisitor* nv) { _updateVisitor = nv; } + void setUpdateVisitor(osg::NodeVisitor* nv) { _updateVisitor = nv; } /** get the update visitor.*/ - osg::NodeVisitor* getUpdateVistor() { return _updateVisitor.get(); } + osg::NodeVisitor* getUpdateVisitor() { return _updateVisitor.get(); } /** get the const update visitor.*/ - const osg::NodeVisitor* getUpdateVistor() const { return _updateVisitor.get(); } + const osg::NodeVisitor* getUpdateVisitor() const { return _updateVisitor.get(); } /** Dispatch the cull and draw for each of the Camera's for this frame.*/