diff options
| author | 2015-08-20 12:32:41 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:32:41 +0200 | |
| commit | c9710474e700a662431b4351d793a67b23adb718 (patch) | |
| tree | 694432a170eec37300f15a42d2cd0cb218ab0fd7 | |
| parent | f04e12bc3970b6ccd7105403f2fe8772515ae058 (diff) | |
| parent | d0aed2adeb87bfd969ec24444d3e27928bbea5ff (diff) | |
| download | OneRoll-c9710474e700a662431b4351d793a67b23adb718.tar.gz OneRoll-c9710474e700a662431b4351d793a67b23adb718.zip | |
Merge branch 'rangeInList' of github.com:Rolisteam/DiceParser into rangeInList
| -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 3398f0a..d859632 100644 --- a/node/parenthesesnode.cpp +++ b/node/parenthesesnode.cpp @@ -51,7 +51,7 @@ void ParenthesesNode::run(ExecutionNode* /*previous*/) } QString ParenthesesNode::toString(bool b) const { - if(wl) + if(b) { return QString("%1 [label=\"ParenthesesNode\"]").arg(m_id); } |