diff options
| author | 2015-03-03 22:57:16 +0100 | |
|---|---|---|
| committer | 2015-03-03 22:57:16 +0100 | |
| commit | 9f57feb3052ef74c9ee6aa08b39f04ee61f6839c (patch) | |
| tree | 7628e1e7138d8314f1d87dc939a991dd5cf039ad /node/parenthesesnode.cpp | |
| parent | d51884f5c6ea38f3bf06b3a0ef185056fa0a7558 (diff) | |
| download | OneRoll-9f57feb3052ef74c9ee6aa08b39f04ee61f6839c.tar.gz OneRoll-9f57feb3052ef74c9ee6aa08b39f04ee61f6839c.zip | |
-store pointeur to previous node.
Diffstat (limited to 'node/parenthesesnode.cpp')
| -rw-r--r-- | node/parenthesesnode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/parenthesesnode.cpp b/node/parenthesesnode.cpp index 0f7002a..f76d33c 100644 --- a/node/parenthesesnode.cpp +++ b/node/parenthesesnode.cpp @@ -10,7 +10,7 @@ void ParenthesesNode::setInternelNode(ExecutionNode* node) } void ParenthesesNode::run(ExecutionNode* /*previous*/) { -// qDebug() << "ParenthesesNode node"; + m_previousNode = NULL; if(NULL!=m_internalNode) { m_internalNode->run(this); |