Fixed old handle(..) method call parameters
This commit is contained in:
parent
21c1d64b1c
commit
3005f34cc4
@ -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())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user