diff options
| author | 2015-08-20 12:57:57 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:57:57 +0200 | |
| commit | 8a4a770104ba75b770671d3e69be6687736f7c8e (patch) | |
| tree | 904d183fdc0448b0efd0cec119a56502d17edc54 | |
| parent | 8a66f62a1f9226620d16af07c3afd580ddd5a65c (diff) | |
| download | OneRoll-8a4a770104ba75b770671d3e69be6687736f7c8e.tar.gz OneRoll-8a4a770104ba75b770671d3e69be6687736f7c8e.zip | |
change new line position
| -rw-r--r-- | diceparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index b3add42..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,7 +942,7 @@ void DiceParser::writeDownDotTree(QString filepath) QTextStream in(&file); in << str; } - in << "\n"; + } void DiceParser::setPathToHelp(QString l) { |