diff options
| author | 2016-09-16 20:35:11 +0200 | |
|---|---|---|
| committer | 2016-09-16 20:35:11 +0200 | |
| commit | 70e09294fca1022d9370fe2fd631a98480c284b2 (patch) | |
| tree | 4b09bfeed97a10ae19bede3f1c7eafafb2cdfcb0 /irc/botircdiceparser.cpp | |
| parent | 92e415fa59bb1508bbbd93905dbe225d4202d571 (diff) | |
| download | OneRoll-70e09294fca1022d9370fe2fd631a98480c284b2.tar.gz OneRoll-70e09294fca1022d9370fe2fd631a98480c284b2.zip | |
-Fix some value on diceparser.
Diffstat (limited to 'irc/botircdiceparser.cpp')
| -rw-r--r-- | irc/botircdiceparser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/irc/botircdiceparser.cpp b/irc/botircdiceparser.cpp index 87d47ff..eb2e3c1 100644 --- a/irc/botircdiceparser.cpp +++ b/irc/botircdiceparser.cpp @@ -37,6 +37,7 @@ BotIrcDiceParser::BotIrcDiceParser(QObject *parent) : // Connect signals and slots! connect(m_socket, SIGNAL(readyRead()), this, SLOT(readData())); connect(m_socket,SIGNAL(connected()),this,SLOT(authentificationProcess())); + connect(m_socket,SIGNAL(disconnected()),this,SLOT(connectToServer())); connect(m_socket,SIGNAL(error(QAbstractSocket::SocketError)),this,SLOT(errorOccurs(QAbstractSocket::SocketError))); } |