summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/remoteobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/remoteobject.cpp')
-rw-r--r--src/libs/installer/remoteobject.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libs/installer/remoteobject.cpp b/src/libs/installer/remoteobject.cpp
index 7c875b183..54034eb65 100644
--- a/src/libs/installer/remoteobject.cpp
+++ b/src/libs/installer/remoteobject.cpp
@@ -60,7 +60,6 @@ RemoteObject::~RemoteObject()
if (QThread::currentThread() == m_socket->thread()) {
if ((m_type != QLatin1String("RemoteClientPrivate"))
&& (m_socket->state() == QLocalSocket::ConnectedState)) {
- writeData(QLatin1String(Protocol::Destroy), m_type, dummy, dummy);
while (m_socket->bytesToWrite()) {
// QAbstractSocket::waitForBytesWritten() may fail randomly on Windows, use
// an event loop and the bytesWritten() signal instead as the docs suggest.