Fix a typo in the signal/slots for a tcp server.

This commit is contained in:
Ken Moore
2016-01-05 13:18:20 -05:00
parent 87ab5f2a22
commit 1c7dab4ab2

View File

@@ -36,7 +36,7 @@ WebSocket::WebSocket(QTcpSocket *sock, QString ID, AuthorizationManager *auth){
idletimer->setInterval(IDLETIMEOUTMINS*60000); //connection timout for idle sockets
idletimer->setSingleShot(true);
connect(idletimer, SIGNAL(timeout()), this, SLOT(checkIdle()) );
connect(TSOCKET, SIGNAL(readyRead()), this, SLOT(EvaluateTCPMessage()) );
connect(TSOCKET, SIGNAL(readyRead()), this, SLOT(EvaluateTcpMessage()) );
connect(TSOCKET, SIGNAL(aboutToClose()), this, SLOT(SocketClosing()) );
idletimer->start();
}