aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2014-12-09 22:06:47 +0100
committerRenaud G <renaud@rolisteam.org>2014-12-09 22:06:47 +0100
commitfa1c05a58698d3a6c049479eb8f7d88ac9ddb348 (patch)
treed899b90ed057ee4d3b0bb230771a1b720630190f
parentcf23e20af397b228702531b749107846a4025b13 (diff)
downloadOneRoll-fa1c05a58698d3a6c049479eb8f7d88ac9ddb348.tar.gz
OneRoll-fa1c05a58698d3a6c049479eb8f7d88ac9ddb348.zip
fix warnings
-rw-r--r--irc/mainwindow.cpp2
-rw-r--r--node/dicerollernode.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/irc/mainwindow.cpp b/irc/mainwindow.cpp
index dede122..9f559fa 100644
--- a/irc/mainwindow.cpp
+++ b/irc/mainwindow.cpp
@@ -45,7 +45,7 @@ void MainWindow::readData()
{
// qDebug()<< "in /dice";
- QString dice=".*PRIVMSG.*\!(.*)";
+ QString dice=".*PRIVMSG.*!(.*)";
QRegExp exp(dice);
exp.indexIn(readLine);
diff --git a/node/dicerollernode.h b/node/dicerollernode.h
index d46f8ba..67d4c2d 100644
--- a/node/dicerollernode.h
+++ b/node/dicerollernode.h
@@ -16,7 +16,7 @@ private:
QMutex* m_mutex;
DiceResult* m_sharedDiceResult;
int m_faces;
- int m_diceCount;
+ quint64 m_diceCount;
};
/**