diff options
| author | 2019-07-28 01:07:11 +0200 | |
|---|---|---|
| committer | 2019-07-28 01:07:11 +0200 | |
| commit | f1a89a3ca758c8af549e62ad4258504cb2bc2c7c (patch) | |
| tree | 7d554a53c556f2ec7aecb4192fb275923e006e00 /die.h | |
| parent | 0fd45ce5b17fa90929800766c0a7b5631541ae2c (diff) | |
| download | OneRoll-f1a89a3ca758c8af549e62ad4258504cb2bc2c7c.tar.gz OneRoll-f1a89a3ca758c8af549e62ad4258504cb2bc2c7c.zip | |
Fix dice copy constructor and set default value
Diffstat (limited to 'die.h')
| -rw-r--r-- | die.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -151,8 +151,8 @@ private: bool m_hasValue= false; bool m_displayStatus= false; bool m_highlighted= true; - qint64 m_maxValue; - qint64 m_base; + qint64 m_maxValue= 0; + qint64 m_base= 0; QString m_color; Die::ArithmeticOperator m_op; |