From 3005f34cc4dbfc132cafb0e6dad3bd659ad3ce6c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 11 Mar 2005 20:19:16 +0000 Subject: [PATCH] Fixed old handle(..) method call parameters --- examples/osgforest/osgforest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/osgforest/osgforest.cpp b/examples/osgforest/osgforest.cpp index 03dc25c7c..8c59dc727 100644 --- a/examples/osgforest/osgforest.cpp +++ b/examples/osgforest/osgforest.cpp @@ -142,7 +142,7 @@ public: virtual void accept(osgGA::GUIEventHandlerVisitor& v) { v.visit(*this); } - virtual bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter&); + virtual bool handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter&, osg::Object*, osg::NodeVisitor*); virtual void getUsage(osg::ApplicationUsage& usage) const; @@ -157,7 +157,7 @@ protected: }; -bool TechniqueEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter&) +bool TechniqueEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActionAdapter&, osg::Object*, osg::NodeVisitor*) { switch(ea.getEventType()) {