diff options
| author | 2017-11-25 02:51:23 +0100 | |
|---|---|---|
| committer | 2017-11-25 02:51:23 +0100 | |
| commit | 95d4b12f2900f13e5836cb460261c96889bdd4e5 (patch) | |
| tree | afcf71441e868fbd215eb68da69229e1b458a92d /result/diceresult.cpp | |
| parent | 6769063ea8a41a568b06c63b797bc26c3c5a1c6d (diff) | |
| download | OneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.tar.gz OneRoll-95d4b12f2900f13e5836cb460261c96889bdd4e5.zip | |
remove useless commit
Diffstat (limited to 'result/diceresult.cpp')
| -rw-r--r-- | result/diceresult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/result/diceresult.cpp b/result/diceresult.cpp index dd624e9..ddedd1c 100644 --- a/result/diceresult.cpp +++ b/result/diceresult.cpp @@ -143,7 +143,7 @@ void DiceResult::setOperator(const Die::ArithmeticOperator& dieOperator) QString DiceResult::toString(bool wl) { QStringList scalarSum; - for(Die* die:m_diceValues) + foreach(Die* die,m_diceValues) { scalarSum << QString::number(die->getValue()); } |