diff options
| author | 2017-02-11 01:32:52 +0100 | |
|---|---|---|
| committer | 2017-02-11 01:32:52 +0100 | |
| commit | aa35163964fb18ea90608f602a4f5bc45792e8f0 (patch) | |
| tree | 79e90b724acd63ae9eba1739df709b411f87a078 /diceparser.cpp | |
| parent | 3fcdcc21088fb99eb6f7206618909940314e7472 (diff) | |
| download | OneRoll-aa35163964fb18ea90608f602a4f5bc45792e8f0.tar.gz OneRoll-aa35163964fb18ea90608f602a4f5bc45792e8f0.zip | |
fix error
Diffstat (limited to 'diceparser.cpp')
| -rw-r--r-- | diceparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index 4ccc247..8331962 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -185,7 +185,7 @@ bool DiceParser::parseLine(QString str) { return true; } - else if(m_errorMap.isEmpty()) + else if(!m_errorMap.isEmpty()) { m_errorMap.insert(ExecutionNode::NOTHING_UNDERSTOOD,QObject::tr("Nothing was understood")); } |