aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/parenthesesnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/parenthesesnode.cpp')
-rw-r--r--node/parenthesesnode.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/node/parenthesesnode.cpp b/node/parenthesesnode.cpp
index 2876147..3398f0a 100644
--- a/node/parenthesesnode.cpp
+++ b/node/parenthesesnode.cpp
@@ -49,9 +49,16 @@ void ParenthesesNode::run(ExecutionNode* /*previous*/)
m_nextNode->run(this);
}
}
-QString ParenthesesNode::toString() const
+QString ParenthesesNode::toString(bool b) const
{
- return "ParenthesesNode";
+ if(wl)
+ {
+ return QString("%1 [label=\"ParenthesesNode\"]").arg(m_id);
+ }
+ else
+ {
+ return m_id;
+ }
}
qint64 ParenthesesNode::getPriority() const
{