diff options
| author | 2018-12-15 11:29:25 +0100 | |
|---|---|---|
| committer | 2018-12-15 11:29:25 +0100 | |
| commit | a0f8bbc597ea0fe0f77979849685705a117faa7f (patch) | |
| tree | 66b4da80e5d6291ba64154bf8660bb1b3d63c708 /diceparser.cpp | |
| parent | 56245e3f3cd280c0f1d29f01b4c7ac55b8f4bdd4 (diff) | |
| download | OneRoll-a0f8bbc597ea0fe0f77979849685705a117faa7f.tar.gz OneRoll-a0f8bbc597ea0fe0f77979849685705a117faa7f.zip | |
-Remove debug message.
Diffstat (limited to 'diceparser.cpp')
| -rw-r--r-- | diceparser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index c3baf23..58fe647 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -516,7 +516,7 @@ { ExecutionNode* next = getLeafNode(start); Result* result=next->getResult(); - qDebug() << "result id" << result->toString(true); + //qDebug() << "result id" << result->toString(true); ExportedDiceResult nodeResult; while(nullptr!=result) { @@ -529,7 +529,7 @@ for(Die* die : diceResult->getResultList()) { faces = die->getFaces(); - qDebug() << "face" << faces; + // qDebug() << "face" << faces; HighLightDice hlDice(die->getListValue(),die->isHighlighted(),die->getColor(), die->hasBeenDisplayed(),die->getFaces()); list.append(hlDice); } @@ -539,7 +539,7 @@ } resultList.append(nodeResult); } - qDebug() << resultList.size(); + //qDebug() << resultList.size(); } void DiceParser::getLastDiceResult(QList<ExportedDiceResult>& diceValuesList,bool& homogeneous) @@ -1137,7 +1137,7 @@ .arg(operatorName==Reroll? QStringLiteral("r") :operatorName==RerollUntil? QStringLiteral("R") :operatorName==RerollAndAdd? QStringLiteral("a") - :"")); + :"")); } } |