diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-19 20:21:22 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-19 20:21:22 +0100 |
commit | 5f5858d503640286c9e5d23634f9f3a8de6a2091 (patch) | |
tree | 4e5167b154b8495e5d097ac309b6170aa4b84bb3 /src/core/model/Node.hpp | |
parent | 5e779c017020a8e0405ee8e43c6ea7d4a9a11ad2 (diff) |
(re-)introduced setter methods to Document.
Diffstat (limited to 'src/core/model/Node.hpp')
-rw-r--r-- | src/core/model/Node.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/model/Node.hpp b/src/core/model/Node.hpp index 190e8de..3e778a6 100644 --- a/src/core/model/Node.hpp +++ b/src/core/model/Node.hpp @@ -319,12 +319,12 @@ protected: * changed such that a new validation run has to be made. Also informs the * parent node about the invalidation. */ - void invalidate() const; + void invalidate(); /** * This method should be called if a Node finds itself in an invalid state. */ - void markInvalid() const; + void markInvalid(); /** * The convention for this function is as follows: |