aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/diceparser.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2018-12-15 11:29:25 +0100
committerRenaud G <renaud@rolisteam.org>2018-12-15 11:29:25 +0100
commita0f8bbc597ea0fe0f77979849685705a117faa7f (patch)
tree66b4da80e5d6291ba64154bf8660bb1b3d63c708 /diceparser.cpp
parent56245e3f3cd280c0f1d29f01b4c7ac55b8f4bdd4 (diff)
downloadOneRoll-a0f8bbc597ea0fe0f77979849685705a117faa7f.tar.gz
OneRoll-a0f8bbc597ea0fe0f77979849685705a117faa7f.zip
-Remove debug message.
Diffstat (limited to 'diceparser.cpp')
-rw-r--r--diceparser.cpp8
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")
- :""));
+ :""));
}
}