From Martin Innus, fixed erroneous change of INTEGER to UNKNOWN, reverting back to INTEGER.

This commit is contained in:
Robert Osfield
2011-06-24 13:35:20 +00:00
parent 5fd1ece440
commit f68c2246fc

View File

@@ -32,7 +32,7 @@ ShapeAttribute::ShapeAttribute(const char * name) :
ShapeAttribute::ShapeAttribute(const char * name, int value) :
_name(name),
_type(UNKNOWN),
_type(INTEGER),
_integer(value)
{}