summaryrefslogtreecommitdiff
path: root/examples/webchannel/chatserver-cpp/chatserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webchannel/chatserver-cpp/chatserver.cpp')
-rw-r--r--examples/webchannel/chatserver-cpp/chatserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/webchannel/chatserver-cpp/chatserver.cpp b/examples/webchannel/chatserver-cpp/chatserver.cpp
index fb25344..0678dc5 100644
--- a/examples/webchannel/chatserver-cpp/chatserver.cpp
+++ b/examples/webchannel/chatserver-cpp/chatserver.cpp
@@ -58,13 +58,13 @@ ChatServer::ChatServer(QObject *parent)
: QObject(parent)
{
QTimer* t = new QTimer(this);
- connect(t, SIGNAL(timeout()), this, SLOT(sendKeepAlive()));
+ connect(t, &QTimer::timeout, this, &ChatServer::sendKeepAlive);
t->start(10000);
m_keepAliveCheckTimer = new QTimer(this);
m_keepAliveCheckTimer->setSingleShot(true);
m_keepAliveCheckTimer->setInterval(2000);
- connect(m_keepAliveCheckTimer, SIGNAL(timeout()), this, SLOT(checkKeepAliveResponses()));
+ connect(m_keepAliveCheckTimer, &QTimer::timeout, this, &ChatServer::checkKeepAliveResponses);
}
ChatServer::~ChatServer()