aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/highlightdice.cpp
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2018-05-11 11:32:11 +0200
committerobiwankennedy <renaud@rolisteam.org>2018-05-11 11:32:11 +0200
commitcfed59df0d283e0f15ada1000baf10ea715c857d (patch)
tree6ad19ec95fdbdb750fef54aa7cad8782a2866ec3 /highlightdice.cpp
parentfd5728eb399e10514afd0bb55b73d504d50b7517 (diff)
downloadOneRoll-cfed59df0d283e0f15ada1000baf10ea715c857d.tar.gz
OneRoll-cfed59df0d283e0f15ada1000baf10ea715c857d.zip
-remove warnings
Diffstat (limited to 'highlightdice.cpp')
-rw-r--r--highlightdice.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/highlightdice.cpp b/highlightdice.cpp
index 7fefc33..47ed79e 100644
--- a/highlightdice.cpp
+++ b/highlightdice.cpp
@@ -19,7 +19,7 @@
***************************************************************************/
#include "highlightdice.h"
-HighLightDice::HighLightDice(QList<quint64> result,bool isHighlighted, QString color)
+HighLightDice::HighLightDice(QList<qint64> result,bool isHighlighted, QString color)
: m_result(result),m_hasHighlight(isHighlighted),m_color(color)
{
@@ -31,12 +31,12 @@ HighLightDice::~HighLightDice()
}
-QList<quint64> HighLightDice::getResult() const
+QList<qint64> HighLightDice::getResult() const
{
return m_result;
}
-void HighLightDice::setResult(const QList<quint64> &result)
+void HighLightDice::setResult(const QList<qint64> &result)
{
m_result = result;
}