From 4678a4db66dcbae92be1b322edf2cb10bd4537aa Mon Sep 17 00:00:00 2001 From: curt Date: Fri, 27 Jul 2001 22:00:48 +0000 Subject: [PATCH] - added support for reporting SGPropertyNode::NONE type --- src/Network/props.cxx | 2 ++ 1 file changed, 2 insertions(+) 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 ) { -- 2.39.5