]> git.mxchange.org Git - flightgear.git/commitdiff
- changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED
authorcurt <curt>
Fri, 29 Jun 2001 03:47:55 +0000 (03:47 +0000)
committercurt <curt>
Fri, 29 Jun 2001 03:47:55 +0000 (03:47 +0000)
src/Network/props.cxx

index bb850308a526a201a4b6ae0f6bc76ff5de111ff4..cc319d84d2fc5f623543975db674f7f2e7f7fe8c 100644 (file)
@@ -80,8 +80,8 @@ static string getValueTypeString( const SGPropertyNode *node ) {
     }
 
     SGPropertyNode::Type type = node->getType();
-    if ( type == SGPropertyNode::UNKNOWN ) {
-       result = "unknown";
+    if ( type == SGPropertyNode::UNSPECIFIED ) {
+       result = "unspecified";
     } else if ( type == SGPropertyNode::BOOL ) {
        result = "bool";
     } else if ( type == SGPropertyNode::INT ) {