summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/keepaliveobject.cpp
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@theqtcompany.com>2016-05-20 09:01:57 +0300
committerKatja Marttila <katja.marttila@qt.io>2016-05-20 11:22:49 +0000
commitdce1c562562266cff98ccede3bc10371b14a207b (patch)
tree19e5bf3d25b6faf290fc1a67ac5b6ad93e344fae /src/libs/installer/keepaliveobject.cpp
parent80a655749ffbce4ec6328541e194e08d60b34639 (diff)
Revert "Windows: Fix crashes in elevated installation"
This reverts commit 95ae661cba931a982d12cd68d8b4da392d74bdd0. As we now require at least Qt5.5.0 we don't need this workaround Change-Id: I6ab930886bc9af0716a61a8e21b12db83018b0c2 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'src/libs/installer/keepaliveobject.cpp')
-rw-r--r--src/libs/installer/keepaliveobject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/installer/keepaliveobject.cpp b/src/libs/installer/keepaliveobject.cpp
index 72227548c..4e1d01896 100644
--- a/src/libs/installer/keepaliveobject.cpp
+++ b/src/libs/installer/keepaliveobject.cpp
@@ -33,8 +33,8 @@
#include "keepaliveobject.h"
#include "remoteclient.h"
-#include "localsocket.h"
+#include <QLocalSocket>
#include <QTimer>
namespace QInstaller {
@@ -48,7 +48,7 @@ KeepAliveObject::KeepAliveObject()
void KeepAliveObject::start()
{
m_timer = new QTimer(this);
- m_socket = new LocalSocket(this);
+ m_socket = new QLocalSocket(this);
connect(m_timer, &QTimer::timeout, [this]() {
if (m_socket->state() != QLocalSocket::UnconnectedState)