Fixed old handle(..) method call parameters

This commit is contained in:
Robert Osfield 2005-03-11 20:19:16 +00:00
parent 21c1d64b1c
commit 3005f34cc4

View File

@ -142,7 +142,7 @@ public:
virtual void accept(osgGA::GUIEventHandlerVisitor& v) { v.visit(*this); } 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; 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()) switch(ea.getEventType())
{ {