From bfddaf6f9f52ceca2c397c17fc77d59a17000bb0 Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Thu, 13 Aug 2020 14:25:59 +0200 Subject: [PATCH] QmlDesigner: Fix linux build Change-Id: I32f560e18def0a72f2b94ab2fa9e8b6ea20f1bc4 Reviewed-by: Tim Jenssen --- .../qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp | 2 ++ .../qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h | 1 + 2 files changed, 3 insertions(+) diff --git a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp index 24dad650903..1f23d39d7d0 100644 --- a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp +++ b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp @@ -96,6 +96,8 @@ NodeInstanceClientProxy::NodeInstanceClientProxy(QObject *parent) m_puppetAliveTimer.start(); } +NodeInstanceClientProxy::~NodeInstanceClientProxy() = default; + void NodeInstanceClientProxy::initializeSocket() { QLocalSocket *localSocket = new QLocalSocket(this); diff --git a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h index fd681b69902..2131109e463 100644 --- a/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h +++ b/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h @@ -70,6 +70,7 @@ class NodeInstanceClientProxy : public QObject, public NodeInstanceClientInterfa public: NodeInstanceClientProxy(QObject *parent); + ~NodeInstanceClientProxy() override; void informationChanged(const InformationChangedCommand &command) override; void valuesChanged(const ValuesChangedCommand &command) override;