diff options
| -rw-r--r-- | irc/mainwindow.cpp | 2 | ||||
| -rw-r--r-- | node/dicerollernode.h | 2 |
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; }; /** |