aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/diceparser.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2015-05-16 08:58:51 +0200
committerRenaud G <renaud@rolisteam.org>2015-05-16 08:58:51 +0200
commita642432bfdaafe4fccf1defeb0aa79a6db7467c3 (patch)
treed4972a496d4cfb9fcd5ab3f9dd349cf58433c739 /diceparser.cpp
parent734ef32d7969d9d5e05a3013eeeef956d12fc603 (diff)
downloadOneRoll-a642432bfdaafe4fccf1defeb0aa79a6db7467c3.tar.gz
OneRoll-a642432bfdaafe4fccf1defeb0aa79a6db7467c3.zip
remove useless debug outputs
Diffstat (limited to 'diceparser.cpp')
-rw-r--r--diceparser.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/diceparser.cpp b/diceparser.cpp
index c7383da..f8f82d6 100644
--- a/diceparser.cpp
+++ b/diceparser.cpp
@@ -542,7 +542,6 @@ bool DiceParser::readDice(QString& str,ExecutionNode* & node)
{
int face = abs(num - end)+1;
- qDebug()<< num << end<< face;
DiceRollerNode* drNode = new DiceRollerNode(face,num);
node = drNode;
ExecutionNode* current = drNode;