fix connect on msvc

This commit is contained in:
Patrick von Reth 2015-07-17 15:36:28 +02:00
parent 6ef2f00f4e
commit 4ea0d86f2a
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ SnarlNetworkFrontend::SnarlNetworkFrontend():
setErrorString(tr("The port is already used by a different application."));
return;
}
connect(tcpServer, &QTcpServer::newConnection, this, SnarlNetworkFrontend::handleConnection);
connect(tcpServer, &QTcpServer::newConnection, this, &SnarlNetworkFrontend::handleConnection);
} else {
tcpServer->deleteLater();
}