winrt: socket engine: Replace last occurrences of old connect syntax

Change-Id: I1d2f3b0b39de252f5392a2411ff4e3d94fd8593b
Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
This commit is contained in:
Oliver Wolff 2018-03-15 08:58:37 +01:00
parent a634f01402
commit 11adeb24ff

View File

@ -547,9 +547,12 @@ QNativeSocketEngine::QNativeSocketEngine(QObject *parent)
d->sslSocket = qobject_cast<QSslSocket *>(parent->parent());
#endif
connect(this, SIGNAL(connectionReady()), SLOT(connectionNotification()), Qt::QueuedConnection);
connect(this, SIGNAL(readReady()), SLOT(processReadReady()), Qt::QueuedConnection);
connect(this, SIGNAL(writeReady()), SLOT(writeNotification()), Qt::QueuedConnection);
connect(this, &QNativeSocketEngine::connectionReady,
this, &QNativeSocketEngine::connectionNotification, Qt::QueuedConnection);
connect(this, &QNativeSocketEngine::readReady,
this, &QNativeSocketEngine::processReadReady, Qt::QueuedConnection);
connect(this, &QNativeSocketEngine::writeReady,
this, &QNativeSocketEngine::writeNotification, Qt::QueuedConnection);
connect(d->worker, &SocketEngineWorker::connectOpFinished,
this, &QNativeSocketEngine::handleConnectOpFinished, Qt::QueuedConnection);
connect(d->worker, &SocketEngineWorker::newDataReceived, this, &QNativeSocketEngine::handleNewData, Qt::QueuedConnection);