Fix format

This commit is contained in:
Albert Vaca Cintora 2023-03-04 23:14:31 +01:00
parent 4c938958ff
commit 20ede97ec4

View file

@ -311,9 +311,11 @@ void LanLinkProvider::tcpSocketConnected()
{ {
QSslSocket *socket = qobject_cast<QSslSocket *>(sender()); QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
if (!socket) if (!socket) {
return; return;
// TODO Delete me? }
// TODO Delete me?
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
disconnect(socket, QOverload<QAbstractSocket::SocketError>::of(&QAbstractSocket::error), this, &LanLinkProvider::connectError); disconnect(socket, QOverload<QAbstractSocket::SocketError>::of(&QAbstractSocket::error), this, &LanLinkProvider::connectError);
#else #else