Compare commits

...

7 Commits

Author SHA1 Message Date
Qt Submodule Update Bot cb42d4501d Update dependencies on '6.10' in qt/qtcoap
Change-Id: I6454ec8cc9624891547a17b49c4552e3e96132bc
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-09 11:46:10 +00:00
Qt Submodule Update Bot 42a1346a7d Update dependencies on '6.10' in qt/qtcoap
Change-Id: Iec01ecd0f13148002b86004c64e40fe94c15842d
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-07 18:36:35 +00:00
Qt Submodule Update Bot 960a83a1e4 Update dependencies on '6.10' in qt/qtcoap
Change-Id: I9cdc113c7809fc5a952380daf94caff232569a51
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-05 17:21:30 +00:00
Qt Submodule Update Bot bea1319ab9 Update dependencies on '6.10' in qt/qtcoap
Change-Id: I82f55b73ec2f6f208c6fce0ca71c0211c77f9f85
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-04 18:56:22 +00:00
Marc Mutz 7f534f670a Normalize signal/slot signatures 2025
This is the result of running util/normalize on the code base. The
following manual edits were needed:

(none)

Pick-to: 6.9 6.8 6.5
Change-Id: Ia18b3968bc164a8dce5e7cca7653c759646cc4da
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
(cherry picked from commit 0ea08d303c)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
2025-06-04 15:21:44 +00:00
Qt Submodule Update Bot b4976e6567 Update dependencies on '6.10' in qt/qtcoap
Change-Id: I6c2c963527c8e27a5ebe0a6d3e39f1fee995d377
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-04 08:18:52 +00:00
Qt Submodule Update Bot 52a14abb5a Update dependencies on '6.10' in qt/qtcoap
Change-Id: I7d444d01732b5d98b17d1e5de1197801b0e88a28
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
2025-06-02 09:05:20 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
dependencies: dependencies:
../qtbase: ../qtbase:
ref: 71842cfb89da0bed1efd6cf7a567550d9e8119f6 ref: 15d3c67c1bee5dcfcd2449429a6b9656efa1e020
required: true required: true

View File

@ -151,7 +151,7 @@ bool waitForHost(const QUrl &url, QtCoap::SecurityMode security = QtCoap::Securi
if (security != QtCoap::SecurityMode::NoSecurity) if (security != QtCoap::SecurityMode::NoSecurity)
client.setSecurityConfiguration(createConfiguration(security)); client.setSecurityConfiguration(createConfiguration(security));
QSignalSpy spyClientFinished(&client, SIGNAL(finished(QCoapReply *))); QSignalSpy spyClientFinished(&client, SIGNAL(finished(QCoapReply*)));
client.get(url); client.get(url);
spyClientFinished.wait(1000); spyClientFinished.wait(1000);