From 2df1da42264d5b80ed4ef85b5f5fdb8510481e82 Mon Sep 17 00:00:00 2001 From: frohlich Date: Tue, 5 Dec 2006 05:43:13 +0000 Subject: [PATCH] Return void instead of bool. --- simgear/scene/model/animation.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simgear/scene/model/animation.cxx b/simgear/scene/model/animation.cxx index e9aa3433..1ec68613 100644 --- a/simgear/scene/model/animation.cxx +++ b/simgear/scene/model/animation.cxx @@ -1865,7 +1865,7 @@ public: { } void setValue(double value) { _value = value; } - virtual bool transform(osg::Matrix&) = 0; + virtual void transform(osg::Matrix&) = 0; protected: double _value; }; @@ -1878,7 +1878,7 @@ public: { } void setValue(double value) { _value = value; } - virtual bool transform(osg::Matrix& matrix) + virtual void transform(osg::Matrix& matrix) { osg::Matrix tmp; set_translation(tmp, _value, _axis); @@ -1895,7 +1895,7 @@ public: _axis(axis), _center(center) { } - virtual bool transform(osg::Matrix& matrix) + virtual void transform(osg::Matrix& matrix) { osg::Matrix tmp; set_rotation(tmp, _value, _center, _axis); -- 2.39.5