diff options
Diffstat (limited to 'diceparser.cpp')
| -rw-r--r-- | diceparser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index a2015d8..c710f55 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -23,7 +23,7 @@ #include <QDebug> #include <QStringList> #include <QObject> - +#include <QFile> #include "node/startingnode.h" #include "node/scalaroperatornode.h" @@ -922,12 +922,12 @@ void DiceParser::writeDownDotTree(QString filepath) str.append("}"); - /*QFile file(filepath); + QFile file(filepath); if(file.open(QIODevice::WriteOnly)) { QTextStream in(&file); in << str; - }*/ + } //qDebug()<< str; |