aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/highlightdice.h
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.h
parentfd5728eb399e10514afd0bb55b73d504d50b7517 (diff)
downloadOneRoll-cfed59df0d283e0f15ada1000baf10ea715c857d.tar.gz
OneRoll-cfed59df0d283e0f15ada1000baf10ea715c857d.zip
-remove warnings
Diffstat (limited to 'highlightdice.h')
-rw-r--r--highlightdice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/highlightdice.h b/highlightdice.h
index 60d0f06..a74d747 100644
--- a/highlightdice.h
+++ b/highlightdice.h
@@ -27,13 +27,13 @@ class HighLightDice
{
public:
- HighLightDice(QList<quint64> result,bool isHighlighted, QString color);
+ HighLightDice(QList<qint64> result,bool isHighlighted, QString color);
virtual ~HighLightDice();
- QList<quint64> getResult() const;
- void setResult(const QList<quint64> &result);
+ QList<qint64> getResult() const;
+ void setResult(const QList<qint64> &result);
bool isHighlighted() const;
void setHighlight(bool hasHighlight);
@@ -42,7 +42,7 @@ public:
void setColor(const QString &color);
private:
- QList<quint64> m_result;
+ QList<qint64> m_result;
bool m_hasHighlight;
QString m_color;
};