- changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED
This commit is contained in:
parent
1b8f9cd1b4
commit
eb2b614117
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ static string getValueTypeString( const SGPropertyNode *node ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
SGPropertyNode::Type type = node->getType();
|
SGPropertyNode::Type type = node->getType();
|
||||||
if ( type == SGPropertyNode::UNKNOWN ) {
|
if ( type == SGPropertyNode::UNSPECIFIED ) {
|
||||||
result = "unknown";
|
result = "unspecified";
|
||||||
} else if ( type == SGPropertyNode::BOOL ) {
|
} else if ( type == SGPropertyNode::BOOL ) {
|
||||||
result = "bool";
|
result = "bool";
|
||||||
} else if ( type == SGPropertyNode::INT ) {
|
} else if ( type == SGPropertyNode::INT ) {
|
||||||
|
|
Loading…
Reference in a new issue