diff options
| author | 2022-03-28 23:23:30 +0200 | |
|---|---|---|
| committer | 2022-04-13 15:40:42 +0200 | |
| commit | c1dca21057dd81c66bf1e164f401b161c2d883ea (patch) | |
| tree | d2813bd30c81c610c1509809eb8a8c782c0568ed /die.h | |
| parent | 70c279ab847883046ef0a951e4d2ccbf6170d19a (diff) | |
| download | OneRoll-c1dca21057dd81c66bf1e164f401b161c2d883ea.tar.gz OneRoll-c1dca21057dd81c66bf1e164f401b161c2d883ea.zip | |
update to new cmake
Diffstat (limited to 'die.h')
| -rw-r--r-- | die.h | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -151,14 +151,15 @@ public: private: QString m_uuid; - qint64 m_value= 0; + qint64 m_value{0}; QList<qint64> m_rollResult; - bool m_selected= false; - bool m_hasValue= false; - bool m_displayStatus= false; - bool m_highlighted= true; - qint64 m_maxValue= 0; - qint64 m_base= 0; + bool m_selected{false}; + bool m_hasValue{false}; + bool m_displayStatus{false}; + bool m_highlighted{true}; + qint64 m_maxValue{0}; + qint64 m_base{0}; + qint64 m_occurence{1}; QString m_color; Die::ArithmeticOperator m_op; |