summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-02-05 13:35:22 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-02-05 13:35:22 +0100
commit09838389f3b9eaf67ad2e0b02a85a62a63fbfc38 (patch)
tree6df31445814ec205c1dd5344e9b2b80f2de9c715
parent662c9c95bf47fde5613b6b3f0d86bae3bcd1eaf5 (diff)
parent9129bbda7b90469e710772cec60f6d6b5e878278 (diff)
Merge remote-tracking branch 'origin/5.14' into 5.15v5.15.0-beta1v5.15.0-alpha1
Conflicts: .qmake.conf Change-Id: I4b6e131fbe19b6f7b3dca10c179969c637d31da5
-rw-r--r--examples/remoteobjects/plugins/plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/remoteobjects/plugins/plugin.cpp b/examples/remoteobjects/plugins/plugin.cpp
index 9590d26..5ee35af 100644
--- a/examples/remoteobjects/plugins/plugin.cpp
+++ b/examples/remoteobjects/plugins/plugin.cpp
@@ -76,8 +76,8 @@ public:
TimeModel(QObject *parent = nullptr) : QObject(parent), d_ptr(nullptr)
{
d_ptr.reset(m_client.acquire< MinuteTimerReplica >());
- connect(d_ptr.data(), SIGNAL(hourChanged()), this, SIGNAL(timeChanged()));
- connect(d_ptr.data(), SIGNAL(minuteChanged()), this, SIGNAL(timeChanged()));
+ connect(d_ptr.data(), SIGNAL(hourChanged(int)), this, SIGNAL(timeChanged()));
+ connect(d_ptr.data(), SIGNAL(minuteChanged(int)), this, SIGNAL(timeChanged()));
connect(d_ptr.data(), SIGNAL(timeChanged()), this, SIGNAL(timeChanged()));
connect(d_ptr.data(), SIGNAL(timeChanged2(QTime)), this, SLOT(test(QTime)));
connect(d_ptr.data(), SIGNAL(sendCustom(PresetInfo)), this, SLOT(testCustom(PresetInfo)));