diff options
| author | 2015-08-20 11:56:10 +0200 | |
|---|---|---|
| committer | 2015-08-20 11:56:10 +0200 | |
| commit | ae81e675a117819aa5a2eb7f9be687aff5a6bb9f (patch) | |
| tree | 4284f5e19a479fb666ab6a931ef1e6f991533dfc /node/parenthesesnode.h | |
| parent | 8a1c33fb342a3609ec4d22e918c5f847c59c1b91 (diff) | |
| download | OneRoll-ae81e675a117819aa5a2eb7f9be687aff5a6bb9f.tar.gz OneRoll-ae81e675a117819aa5a2eb7f9be687aff5a6bb9f.zip | |
add bool parameter to toString() function in node.
Diffstat (limited to 'node/parenthesesnode.h')
| -rw-r--r-- | node/parenthesesnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/parenthesesnode.h b/node/parenthesesnode.h index 999e7bd..fbb1caf 100644 --- a/node/parenthesesnode.h +++ b/node/parenthesesnode.h @@ -34,7 +34,7 @@ public: virtual void run(ExecutionNode* previous = NULL); void setInternelNode(ExecutionNode* node); - virtual QString toString()const; + virtual QString toString(bool)const; virtual qint64 getPriority() const; private: ExecutionNode* m_internalNode; |