aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmldebug
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-03-13 11:46:34 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2020-03-16 16:13:46 +0100
commitebf6bf3b01f312fe066225c67f794f7ab67cb49a (patch)
treededd7bf825c7564985ecdb7b89e5025923377f9b /src/qmldebug
parentafe20375bab3dea584c3b6c9bc5812da78f6618e (diff)
Fix some network related deprecation warnings
Change-Id: I0e5e9e42b7c81e1fa5d6abde6bd6346dbc2f14ff Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qmldebug')
-rw-r--r--src/qmldebug/qqmldebugconnection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qmldebug/qqmldebugconnection.cpp b/src/qmldebug/qqmldebugconnection.cpp
index 4e087ee6db..ed11bd46db 100644
--- a/src/qmldebug/qqmldebugconnection.cpp
+++ b/src/qmldebug/qqmldebugconnection.cpp
@@ -388,7 +388,7 @@ void QQmlDebugConnection::connectToHost(const QString &hostName, quint16 port)
connect(socket, &QAbstractSocket::disconnected, this, &QQmlDebugConnection::socketDisconnected);
connect(socket, &QAbstractSocket::connected, this, &QQmlDebugConnection::socketConnected);
connect(socket, static_cast<void(QAbstractSocket::*)(QAbstractSocket::SocketError)>(
- &QAbstractSocket::error), this, &QQmlDebugConnection::socketError);
+ &QAbstractSocket::errorOccurred), this, &QQmlDebugConnection::socketError);
connect(socket, &QAbstractSocket::stateChanged, this, &QQmlDebugConnection::socketStateChanged);
socket->connectToHost(hostName, port);
}
@@ -416,7 +416,7 @@ public:
connect(parent, &QLocalSocket::stateChanged,
this, &LocalSocketSignalTranslator::onStateChanged);
connect(parent, static_cast<void(QLocalSocket::*)(QLocalSocket::LocalSocketError)>(
- &QLocalSocket::error), this, &LocalSocketSignalTranslator::onError);
+ &QLocalSocket::errorOccurred), this, &LocalSocketSignalTranslator::onError);
}
void onError(QLocalSocket::LocalSocketError error)