From 7c94ff2b6dd0701ba08fc7a10a0705c67185c251 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 7 May 2008 13:49:32 +0000 Subject: [PATCH] From Terry Welsh, fixed typo of getEnd() --- include/osgUtil/LineSegmentIntersector | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgUtil/LineSegmentIntersector b/include/osgUtil/LineSegmentIntersector index facba2a4d..d7ae6f408 100644 --- a/include/osgUtil/LineSegmentIntersector +++ b/include/osgUtil/LineSegmentIntersector @@ -77,7 +77,7 @@ class OSGUTIL_EXPORT LineSegmentIntersector : public Intersector inline const osg::Vec3d& getStart() const { return _start; } inline void setEnd(const osg::Vec3d& end) { _end = end; } - inline const osg::Vec3d& setEnd() const { return _end; } + inline const osg::Vec3d& getEnd() const { return _end; } public: