X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_commands.cxx;h=9303b17727f14e55cdef5540dd2a5334cbffd0f3;hb=6a9051883c1e5c1b7534ba0c833ebe86c85425a9;hp=cedd772ac3bb3e215dff1aa6e0d292cc19fc0408;hpb=2795fefa71d739ff4a79fed1277daae50c4ee3c4;p=flightgear.git diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index cedd772ac..9303b1772 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -205,17 +205,17 @@ do_property_assign (const SGPropertyNode * arg) SGPropertyNode * node = fgGetNode(propname, true); switch (node->getType()) { - case SGValue::BOOL: + case SGPropertyNode::BOOL: return node->setBoolValue(arg->getBoolValue("value")); - case SGValue::INT: + case SGPropertyNode::INT: return node->setIntValue(arg->getIntValue("value")); - case SGValue::LONG: + case SGPropertyNode::LONG: return node->setLongValue(arg->getLongValue("value")); - case SGValue::FLOAT: + case SGPropertyNode::FLOAT: return node->setFloatValue(arg->getFloatValue("value")); - case SGValue::DOUBLE: + case SGPropertyNode::DOUBLE: return node->setDoubleValue(arg->getDoubleValue("value")); - case SGValue::STRING: + case SGPropertyNode::STRING: return node->setStringValue(arg->getStringValue("value")); default: return node->setUnknownValue(arg->getStringValue("value")); @@ -239,21 +239,21 @@ do_property_adjust (const SGPropertyNode * arg) SGPropertyNode * node = fgGetNode(propname, true); switch (node->getType()) { - case SGValue::BOOL: + case SGPropertyNode::BOOL: if (arg->getBoolValue("step")) return node->setBoolValue(!node->getBoolValue()); else return true; - case SGValue::INT: + case SGPropertyNode::INT: return node->setIntValue(node->getIntValue() + arg->getIntValue("step")); - case SGValue::LONG: + case SGPropertyNode::LONG: return node->setLongValue(node->getLongValue() + arg->getLongValue("step")); - case SGValue::FLOAT: + case SGPropertyNode::FLOAT: return node->setFloatValue(node->getFloatValue() + arg->getFloatValue("step")); - case SGValue::DOUBLE: + case SGPropertyNode::DOUBLE: return node->setDoubleValue(node->getDoubleValue() + arg->getDoubleValue("step")); default: // doesn't make sense with strings