From: curt Date: Fri, 29 Jun 2001 03:47:55 +0000 (+0000) Subject: - changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb2b6141174546fb85a4e7cf8d72f367fbac1614;p=flightgear.git - changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED --- diff --git a/src/Network/props.cxx b/src/Network/props.cxx index bb850308a..cc319d84d 100644 --- a/src/Network/props.cxx +++ b/src/Network/props.cxx @@ -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 ) {