diff options
| -rw-r--r-- | die.cpp | 2 | ||||
| -rw-r--r-- | result/diceresult.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -194,7 +194,7 @@ bool Die::hasBeenDisplayed() const } void Die::displayed() { - m_displayStatus= true; + setDisplayed(true); } void Die::setDisplayed(bool b) { diff --git a/result/diceresult.cpp b/result/diceresult.cpp index 7129f43..2f13210 100644 --- a/result/diceresult.cpp +++ b/result/diceresult.cpp @@ -184,7 +184,7 @@ Result* DiceResult::getCopy() const { auto newdie= new Die(*die); newdie->setDisplayed(false); - die->displayed(); + // die->displayed(); list.append(newdie); } copy->setResultList(list); |