summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/remoteserver.cpp
diff options
context:
space:
mode:
authorkh <karsten.heimrich@theqtcompany.com>2014-11-26 11:27:40 +0100
committerKarsten Heimrich <karsten.heimrich@theqtcompany.com>2014-11-26 11:45:30 +0100
commitac79fa8edf9d81c801c120f3c9d9edf93d2b0bfe (patch)
tree69ff0e9c03adac9739bd6614d88d0dd07dc9b945 /src/libs/installer/remoteserver.cpp
parent44f6683f4171e1ba555de8d73dfcf9dc90041670 (diff)
Fix typo.
Change-Id: I6a0b2138dd3c4d085e1f1f3f4848910fbf43c2e3 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/libs/installer/remoteserver.cpp')
-rw-r--r--src/libs/installer/remoteserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/remoteserver.cpp b/src/libs/installer/remoteserver.cpp
index c5559cb10..f47cb30ab 100644
--- a/src/libs/installer/remoteserver.cpp
+++ b/src/libs/installer/remoteserver.cpp
@@ -66,7 +66,7 @@ void RemoteServer::start()
d->m_tcpServer = new TcpServer(d->m_port, d->m_address, this);
d->m_tcpServer->moveToThread(&d->m_thread);
connect(&d->m_thread, SIGNAL(finished()), d->m_tcpServer, SLOT(deleteLater()));
- connect (d->m_tcpServer, SIGNAL(newIncommingConnection()), this, SLOT(restartWatchdog()));
+ connect (d->m_tcpServer, SIGNAL(newIncomingConnection()), this, SLOT(restartWatchdog()));
d->m_thread.start();
if (d->m_mode == Protocol::Mode::Release) {