Fix format
This commit is contained in:
parent
4c938958ff
commit
20ede97ec4
1 changed files with 4 additions and 2 deletions
|
@ -311,9 +311,11 @@ void LanLinkProvider::tcpSocketConnected()
|
|||
{
|
||||
QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
|
||||
|
||||
if (!socket)
|
||||
if (!socket) {
|
||||
return;
|
||||
// TODO Delete me?
|
||||
}
|
||||
|
||||
// TODO Delete me?
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
|
||||
disconnect(socket, QOverload<QAbstractSocket::SocketError>::of(&QAbstractSocket::error), this, &LanLinkProvider::connectError);
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue