diff options
| author | 2015-08-20 12:58:25 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:58:25 +0200 | |
| commit | 0da70c6187c1050fc38d80342e889cd7ac155b62 (patch) | |
| tree | 14ab2c000dae83d983c84dafcdb901fb430f78a3 | |
| parent | 18c5edfe18cdd5c3d5f87a1fa5c25016e5a5541f (diff) | |
| parent | 8a4a770104ba75b770671d3e69be6687736f7c8e (diff) | |
| download | OneRoll-0da70c6187c1050fc38d80342e889cd7ac155b62.tar.gz OneRoll-0da70c6187c1050fc38d80342e889cd7ac155b62.zip | |
Merge branch 'rangeInList' of github.com:Rolisteam/DiceParser into rangeInList
| -rw-r--r-- | diceparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index 8f930a0..6d043a1 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -933,7 +933,7 @@ void DiceParser::writeDownDotTree(QString filepath) { QString str("digraph ExecutionTree {\n"); m_start->generateDotTree(str); - str.append("}"); + str.append("}\n"); QFile file(filepath); @@ -942,6 +942,7 @@ void DiceParser::writeDownDotTree(QString filepath) QTextStream in(&file); in << str; } + } void DiceParser::setPathToHelp(QString l) { |