diff options
| author | 2015-08-20 12:53:16 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:53:16 +0200 | |
| commit | 6d39993c62ffe61cb73cba3b4fc2c7631c4590a5 (patch) | |
| tree | 7b614d8ce4b3a7b6e6eec9e3657fec75c8e7fed3 /result/result.cpp | |
| parent | eb4631902d1aca34f1898de5ecaa4cad38fe18c9 (diff) | |
| parent | 784c00cc2e0d224723b2480b5a7776ccd26c90b3 (diff) | |
| download | OneRoll-6d39993c62ffe61cb73cba3b4fc2c7631c4590a5.tar.gz OneRoll-6d39993c62ffe61cb73cba3b4fc2c7631c4590a5.zip | |
Merge branch 'rangeInList' of github.com:Rolisteam/DiceParser into rangeInList
Diffstat (limited to 'result/result.cpp')
| -rw-r--r-- | result/result.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/result/result.cpp b/result/result.cpp index 6451e63..401123a 100644 --- a/result/result.cpp +++ b/result/result.cpp @@ -60,8 +60,9 @@ void Result::generateDotTree(QString& s) m_previous->generateDotTree(s); } { + s.append(toString(false)); s.append(" -> "); - s.append("NULL;\n"); + s.append("NULL"); s.append(" [label=\"previousResult\"];\n"); } |