diff options
| author | 2017-02-12 11:19:57 +0100 | |
|---|---|---|
| committer | 2017-02-12 11:19:57 +0100 | |
| commit | 527011e141ea8022a2bb41a52ef64fbb6cac0cfe (patch) | |
| tree | b9c03f75376a8041c1f31f7e6908735721b2c19c /node | |
| parent | 6ac191e912e240dcc6eb00f36eb643ff3dd144d7 (diff) | |
| download | OneRoll-527011e141ea8022a2bb41a52ef64fbb6cac0cfe.tar.gz OneRoll-527011e141ea8022a2bb41a52ef64fbb6cac0cfe.zip | |
-remove unsigned
Diffstat (limited to 'node')
| -rw-r--r-- | node/dicerollernode.cpp | 2 | ||||
| -rw-r--r-- | node/dicerollernode.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/node/dicerollernode.cpp b/node/dicerollernode.cpp index c3062c9..caff889 100644 --- a/node/dicerollernode.cpp +++ b/node/dicerollernode.cpp @@ -9,7 +9,7 @@ -DiceRollerNode::DiceRollerNode(quint64 max,qint64 min) +DiceRollerNode::DiceRollerNode(qint64 max,qint64 min) : m_max(max),m_diceResult(new DiceResult()),m_min(min) { m_result=m_diceResult; diff --git a/node/dicerollernode.h b/node/dicerollernode.h index ab5c47f..dcdbeb2 100644 --- a/node/dicerollernode.h +++ b/node/dicerollernode.h @@ -17,7 +17,7 @@ public: * @param faces, number of faces of dices * @param offset, first value of dice. */ - DiceRollerNode(quint64 max, qint64 min = 1); + DiceRollerNode(qint64 max, qint64 min = 1); /** * @brief run - starts to roll dice. |