From: curt Date: Fri, 27 Jul 2001 22:00:48 +0000 (+0000) Subject: - added support for reporting SGPropertyNode::NONE type X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4678a4db66dcbae92be1b322edf2cb10bd4537aa;p=flightgear.git - added support for reporting SGPropertyNode::NONE type --- diff --git a/src/Network/props.cxx b/src/Network/props.cxx index cc319d84d..7452f7b5d 100644 --- a/src/Network/props.cxx +++ b/src/Network/props.cxx @@ -82,6 +82,8 @@ static string getValueTypeString( const SGPropertyNode *node ) { SGPropertyNode::Type type = node->getType(); if ( type == SGPropertyNode::UNSPECIFIED ) { result = "unspecified"; + } else if ( type == SGPropertyNode::NONE ) { + result = "none"; } else if ( type == SGPropertyNode::BOOL ) { result = "bool"; } else if ( type == SGPropertyNode::INT ) {