From 02ff109746287f58126ddf6248495db91522537f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 14 Feb 2007 16:16:38 +0000 Subject: [PATCH] Changed the initialized osg Drager:::PointerInfo::hitIter to prevent compile problems under Windows --- src/osgManipulator/Dragger.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osgManipulator/Dragger.cpp b/src/osgManipulator/Dragger.cpp index cdadebaf0..d1d907829 100644 --- a/src/osgManipulator/Dragger.cpp +++ b/src/osgManipulator/Dragger.cpp @@ -29,9 +29,9 @@ Dragger::~Dragger() Dragger::PointerInfo::PointerInfo(): pixel_x(0), pixel_y(0), - sv(0), - hitIter(0) -{ + sv(0) +{ + hitIter = hitList.begin(); } bool Dragger::PointerInfo::contains(const osg::Node* node) const