mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-07 21:05:21 +08:00
20 lines
873 B
Diff
20 lines
873 B
Diff
|
diff --git a/qcoro/websockets/qcorowebsocket.cpp b/qcoro/websockets/qcorowebsocket.cpp
|
||
|
index be9c1f7..c686d14 100644
|
||
|
--- a/qcoro/websockets/qcorowebsocket.cpp
|
||
|
+++ b/qcoro/websockets/qcorowebsocket.cpp
|
||
|
@@ -32,7 +32,13 @@ public:
|
||
|
emitReady(true);
|
||
|
}
|
||
|
}))
|
||
|
- , mError(connect(socket, qOverload<QAbstractSocket::SocketError>(&QWebSocket::error), this, [this](auto error) {
|
||
|
+ , mError(connect(socket, qOverload<QAbstractSocket::SocketError>(
|
||
|
+#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
|
||
|
+ &QWebSocket::errorOccurred
|
||
|
+#else
|
||
|
+ &QWebSocket::error
|
||
|
+#endif
|
||
|
+ ), this, [this](auto error) {
|
||
|
qWarning() << "QWebSocket failed to connect to a websocket server: " << error;
|
||
|
emitReady(false);
|
||
|
}))
|