diff options
| author | 2015-05-16 08:59:06 +0200 | |
|---|---|---|
| committer | 2015-05-16 08:59:06 +0200 | |
| commit | 2f24c7b8361d87b67e0a204b1f054d750f650d66 (patch) | |
| tree | 3ca22e5312ae0a061b4840d122e4a7ad99323005 /parsingtoolbox.cpp | |
| parent | a642432bfdaafe4fccf1defeb0aa79a6db7467c3 (diff) | |
| download | OneRoll-2f24c7b8361d87b67e0a204b1f054d750f650d66.tar.gz OneRoll-2f24c7b8361d87b67e0a204b1f054d750f650d66.zip | |
remove useless debug outputs
Diffstat (limited to 'parsingtoolbox.cpp')
| -rw-r--r-- | parsingtoolbox.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/parsingtoolbox.cpp b/parsingtoolbox.cpp index 0052f07..f6b1f12 100644 --- a/parsingtoolbox.cpp +++ b/parsingtoolbox.cpp @@ -238,16 +238,13 @@ bool ParsingToolBox::readDiceRange(QString& str,int& start, int& end) { bool expectSquareBrasket=false; - qDebug()<<"readDiceRange"<<str; if((str.startsWith("["))) { str=str.remove(0,1); expectSquareBrasket = true; } -qDebug()<<"readDiceRange"<<str; if(readNumber(str,start)) { - qDebug()<<"readDiceRange"<<str; if(str.startsWith("-")) { str=str.remove(0,1); @@ -270,7 +267,6 @@ qDebug()<<"readDiceRange"<<str; { return false; } - qDebug()<<"readDiceRange"<<str; } } |