diff options
| author | 2017-02-12 11:19:57 +0100 | |
|---|---|---|
| committer | 2017-02-12 11:19:57 +0100 | |
| commit | 527011e141ea8022a2bb41a52ef64fbb6cac0cfe (patch) | |
| tree | b9c03f75376a8041c1f31f7e6908735721b2c19c /die.cpp | |
| parent | 6ac191e912e240dcc6eb00f36eb643ff3dd144d7 (diff) | |
| download | OneRoll-527011e141ea8022a2bb41a52ef64fbb6cac0cfe.tar.gz OneRoll-527011e141ea8022a2bb41a52ef64fbb6cac0cfe.zip | |
-remove unsigned
Diffstat (limited to 'die.cpp')
| -rw-r--r-- | die.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -169,12 +169,12 @@ void Die::setColor(const QString &color) m_color = color; } -quint64 Die::getMaxValue() const +qint64 Die::getMaxValue() const { return m_maxValue; } -void Die::setMaxValue(const quint64 &maxValue) +void Die::setMaxValue(const qint64 &maxValue) { m_maxValue = maxValue; } |