From e306f27e234971f70c66bb6127dc176fc6e2c9a2 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 24 Jun 2011 13:36:45 +0000 Subject: [PATCH] Merged from svn/trunk changeset 12640, 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) {}