From f68c2246fc53526c105a3aaaea72ec2fd972378f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 24 Jun 2011 13:35:20 +0000 Subject: [PATCH] From Martin Innus, fixed erroneous change of INTEGER to UNKNOWN, reverting back to INTEGER. --- src/osgSim/ShapeAttribute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgSim/ShapeAttribute.cpp b/src/osgSim/ShapeAttribute.cpp index b45103560..3af4be0c0 100644 --- a/src/osgSim/ShapeAttribute.cpp +++ b/src/osgSim/ShapeAttribute.cpp @@ -32,7 +32,7 @@ ShapeAttribute::ShapeAttribute(const char * name) : ShapeAttribute::ShapeAttribute(const char * name, int value) : _name(name), - _type(UNKNOWN), + _type(INTEGER), _integer(value) {}