diff options
| author | 2022-04-16 01:58:40 +0200 | |
|---|---|---|
| committer | 2022-04-16 02:59:30 +0200 | |
| commit | 6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8 (patch) | |
| tree | e29af0f803de724e28eab85da2dfe6c535a8292b /node/dicerollernode.h | |
| parent | 0c040da59e6aa2df3bd0c22e38b2afe0512d3749 (diff) | |
| download | OneRoll-6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8.tar.gz OneRoll-6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8.zip | |
Make sure Windows compilation works
Diffstat (limited to 'node/dicerollernode.h')
| -rw-r--r-- | node/dicerollernode.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/node/dicerollernode.h b/node/dicerollernode.h index 67d4074..52178cb 100644 --- a/node/dicerollernode.h +++ b/node/dicerollernode.h @@ -45,8 +45,8 @@ public: virtual ExecutionNode* getCopy() const; // private members - Die::ArithmeticOperator getOperator() const; - void setOperator(const Die::ArithmeticOperator& dieOperator); + Dice::ArithmeticOperator getOperator() const; + void setOperator(const Dice::ArithmeticOperator& dieOperator); bool getUnique() const; void setUnique(bool unique); @@ -54,10 +54,10 @@ public: private: quint64 m_diceCount; qint64 m_max; /// faces - DiceResult* m_diceResult; + DiceResult* m_diceResult{nullptr}; qint64 m_min; - Die::ArithmeticOperator m_operator; - bool m_unique = false; + Dice::ArithmeticOperator m_operator; + bool m_unique{false}; }; #endif // DICEROLLERNODE_H |