aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2018-06-14 11:14:29 +0200
committerRenaud G <renaud@rolisteam.org>2018-06-14 11:16:02 +0200
commite2969a6b122b98b6e9ed2241c3990d239c8cb13d (patch)
tree1f79aeb0d2ebecfb35aab94856b665a47d0ddc6a
parent0fc28f038271f7ee4f2656af4d53ec3351701dd9 (diff)
downloadOneRoll-e2969a6b122b98b6e9ed2241c3990d239c8cb13d.tar.gz
OneRoll-e2969a6b122b98b6e9ed2241c3990d239c8cb13d.zip
remove debug message
-rw-r--r--diceparser.cpp2
-rw-r--r--node/explodedicenode.cpp4
-rw-r--r--node/rerolldicenode.cpp1
3 files changed, 0 insertions, 7 deletions
diff --git a/diceparser.cpp b/diceparser.cpp
index 77a0be9..22ff52f 100644
--- a/diceparser.cpp
+++ b/diceparser.cpp
@@ -877,7 +877,6 @@ bool DiceParser::readOperator(QString& str,ExecutionNode* previous)
{
parent = nodeExecOrChild;
nodeExecOrChild = nodeExecOrChild->getNextNode();
- //qDebug() << node->getPriority() << nodeExecOrChild->getPriority() << "###########";
}
// management of operator priority
if((nullptr != nodeExecOrChild)&&(nodeExec != nodeExecOrChild))
@@ -967,7 +966,6 @@ bool DiceParser::readOption(QString& str,ExecutionNode* previous)//,
{
node = m_parsingToolbox->addSort(previous,ascending);
KeepDiceExecNode* nodeK = new KeepDiceExecNode();
- //qDebug() << "nodeK " << previous->toString(true) << str;
nodeK->setDiceKeepNumber(myNumber);
node->setNextNode(nodeK);
node = nodeK;
diff --git a/node/explodedicenode.cpp b/node/explodedicenode.cpp
index d640eaa..b151de8 100644
--- a/node/explodedicenode.cpp
+++ b/node/explodedicenode.cpp
@@ -38,10 +38,6 @@ void ExplodeDiceNode::run(ExecutionNode* previous)
m_nextNode->run(this);
}
}
- else
- {
- qDebug() << "test!!";
- }
}
}
ExplodeDiceNode::~ExplodeDiceNode()
diff --git a/node/rerolldicenode.cpp b/node/rerolldicenode.cpp
index 21e0dbf..3f0228c 100644
--- a/node/rerolldicenode.cpp
+++ b/node/rerolldicenode.cpp
@@ -44,7 +44,6 @@ void RerollDiceNode::run(ExecutionNode* previous)
bool finished = false;
while(m_validator->hasValid(die,false) && !finished)
{
- qDebug() << "reroll"<< die->getValue() << m_instruction;
if(m_instruction != nullptr)
{
m_instruction->run(this);