change signature of errorTestingLocalSocket

This commit is contained in:
Stephen Birarda 2016-03-08 09:09:28 -08:00
parent 20ab108d51
commit 73b7e787d3
2 changed files with 2 additions and 2 deletions

View file

@ -920,7 +920,7 @@ void LimitedNodeList::connectedForLocalSocketTest() {
} }
} }
void LimitedNodeList::errorTestingLocalSocket(QAbstractSocket::SocketError error) { void LimitedNodeList::errorTestingLocalSocket() {
auto localIPTestSocket = qobject_cast<QTcpSocket*>(sender()); auto localIPTestSocket = qobject_cast<QTcpSocket*>(sender());
if (localIPTestSocket) { if (localIPTestSocket) {

View file

@ -249,7 +249,7 @@ signals:
protected slots: protected slots:
void connectedForLocalSocketTest(); void connectedForLocalSocketTest();
void errorTestingLocalSocket(QAbstractSocket::SocketError error); void errorTestingLocalSocket();
protected: protected:
LimitedNodeList(unsigned short socketListenPort = 0, unsigned short dtlsListenPort = 0); LimitedNodeList(unsigned short socketListenPort = 0, unsigned short dtlsListenPort = 0);