From 4a76063b037f59a2fbb8abf97b3abc12cbb666c1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 8 Jan 2014 10:16:39 +0000 Subject: [PATCH] Moved destructor to protected --- include/osgManipulator/AntiSquish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgManipulator/AntiSquish b/include/osgManipulator/AntiSquish index c81805fbd..e48c7a42f 100644 --- a/include/osgManipulator/AntiSquish +++ b/include/osgManipulator/AntiSquish @@ -62,12 +62,12 @@ class OSGMANIPULATOR_EXPORT AntiSquish: public osg::MatrixTransform const osg::Vec3d& getPosition() const { return _position; } - virtual ~AntiSquish(); - osg::Matrix computeUnSquishedMatrix(const osg::Matrix&, bool& flag); protected: + virtual ~AntiSquish(); + osg::NodeCallback* _asqCallback; osg::Vec3d _pivot;