- changed the default value of the archive flag to false; it must now

be set explicitly for a value to be saved
This commit is contained in:
curt
2001-07-12 21:08:58 +00:00
parent fcb873b6dd
commit 007a1e4659

View File

@@ -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)
{
}