]> git.mxchange.org Git - simgear.git/commitdiff
Melchior FRANZ: fix SGPropertyNode::LAST_USED_ATTRIBUTE
authorThorstenB <brehmt@gmail.com>
Tue, 14 Jun 2011 19:49:42 +0000 (21:49 +0200)
committerThorstenB <brehmt@gmail.com>
Tue, 14 Jun 2011 19:49:42 +0000 (21:49 +0200)
fixes commit c782a32076016f2c3c01b4fd437b024dc77806e9,
(also see 38494a48d83f194e151d2fea2726e60725478c12 :) )

simgear/props/props.cxx
simgear/props/props.hxx

index 12a8fe833fc4c354ed2bf25febc020f904499f8a..499d417fb06009ad0f8e6e42dadd9d0d92ff4b7b 100644 (file)
@@ -642,7 +642,7 @@ SGPropertyNode::trace_read () const
  * Last used attribute
  * Update as needed when enum Attribute is changed
  */
-const int SGPropertyNode::LAST_USED_ATTRIBUTE = USERARCHIVE;
+const int SGPropertyNode::LAST_USED_ATTRIBUTE = PRESERVE;
 
 /**
  * Default constructor: always creates a root node.
index 60da557d87a136838eb93ad1d79672f9d49b83be..8cf38e6da7954becd375207277a69e56381e837f 100644 (file)
@@ -762,6 +762,8 @@ public:
     TRACE_WRITE = 32,
     USERARCHIVE = 64,
     PRESERVE = 128
+    // beware: if you add another attribute here,
+    // also update value of "LAST_USED_ATTRIBUTE".
   };