diff options
| author | 2015-05-17 00:05:06 +0200 | |
|---|---|---|
| committer | 2015-05-17 00:05:06 +0200 | |
| commit | c8c9bffb2b439b95d5061d639ebecec07271ae01 (patch) | |
| tree | d9d77f9a2b0bb5cee7e9b4d4f2c500d7a33bdc52 /parsingtoolbox.cpp | |
| parent | bb89b91d9919ad9fed8b9d30ea0df79ceea4d3f7 (diff) | |
| parent | 2f24c7b8361d87b67e0a204b1f054d750f650d66 (diff) | |
| download | OneRoll-c8c9bffb2b439b95d5061d639ebecec07271ae01.tar.gz OneRoll-c8c9bffb2b439b95d5061d639ebecec07271ae01.zip | |
Merge branch 'master' of github.com:obiwankennedy/DiceParser
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; } } |