From: curt Date: Thu, 12 Jul 2001 21:08:58 +0000 (+0000) Subject: - changed the default value of the archive flag to false; it must now X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=007a1e4659008215c45e6677bc5014662eb68113;p=simgear.git - changed the default value of the archive flag to false; it must now be set explicitly for a value to be saved --- diff --git a/simgear/misc/props.cxx b/simgear/misc/props.cxx index 5c835c50..66e2c116 100644 --- a/simgear/misc/props.cxx +++ b/simgear/misc/props.cxx @@ -297,7 +297,7 @@ SGPropertyNode::SGPropertyNode () _parent(0), _type(NONE), _tied(false), - _attr(READ|WRITE|ARCHIVE) + _attr(READ|WRITE) { } @@ -348,7 +348,7 @@ SGPropertyNode::SGPropertyNode (const SGPropertyNode &node) SGPropertyNode::SGPropertyNode (const string &name, int index, SGPropertyNode * parent) : _name(name), _index(index), _parent(parent), _type(NONE), - _tied(false), _attr(READ|WRITE|ARCHIVE) + _tied(false), _attr(READ|WRITE) { }