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:
parent
a634f01402
commit
11adeb24ff
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user