summaryrefslogtreecommitdiffstats
path: root/src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp')
-rw-r--r--src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp b/src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp
index a5ab3e0..7ee8e57 100644
--- a/src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp
+++ b/src/remoteobjects/doc/snippets/cmake-macros/simpleswitch.cpp
@@ -54,7 +54,7 @@
SimpleSwitch::SimpleSwitch(QObject *parent) : SimpleSwitchSimpleSource(parent)
{
stateChangeTimer = new QTimer(this); // Initialize timer
- QObject::connect(stateChangeTimer, SIGNAL(timeout()), this, SLOT(timeout_slot())); // connect timeout() signal from stateChangeTimer to timeout_slot() of simpleSwitch
+ QObject::connect(stateChangeTimer, &SimpleSwitch::timeout, this, &SimpleSwitch::timeout_slot); // connect timeout() signal from stateChangeTimer to timeout_slot() of simpleSwitch
stateChangeTimer->start(2000); // Start timer and set timout to 2 seconds
qDebug() << "Source Node Started";
}