From 86a37616f7294e85431ce8494986a02eed857f34 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 25 Sep 2012 11:04:11 +0000 Subject: [PATCH] Changed dispatch to virtual --- include/osgManipulator/Dragger | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgManipulator/Dragger b/include/osgManipulator/Dragger index 74c052e9b..acd70bb35 100644 --- a/include/osgManipulator/Dragger +++ b/include/osgManipulator/Dragger @@ -257,7 +257,7 @@ class OSGMANIPULATOR_EXPORT Dragger : public osg::MatrixTransform virtual void setupDefaultGeometry() {} virtual bool receive(const MotionCommand& command); - void dispatch(MotionCommand& command); + virtual void dispatch(MotionCommand& command); void setDraggerActive(bool active) { _draggerActive = active; } bool getDraggerActive() const { return _draggerActive; }