]> git.mxchange.org Git - simgear.git/commitdiff
- changed the default value of the archive flag to false; it must now
authorcurt <curt>
Thu, 12 Jul 2001 21:08:58 +0000 (21:08 +0000)
committercurt <curt>
Thu, 12 Jul 2001 21:08:58 +0000 (21:08 +0000)
  be set explicitly for a value to be saved

simgear/misc/props.cxx

index 5c835c50cb84f8e82554af7ef6d6b5ddf3c3ddef..66e2c11691eb4c8285d2b61f88b74dace5bf2ca8 100644 (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)
 {
 }