QmlDesigner: Fix linux build

Change-Id: I32f560e18def0a72f2b94ab2fa9e8b6ea20f1bc4
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2020-08-13 14:25:59 +02:00
committed by Tim Jenssen
parent cf3531b115
commit bfddaf6f9f
2 changed files with 3 additions and 0 deletions

View File

@@ -96,6 +96,8 @@ NodeInstanceClientProxy::NodeInstanceClientProxy(QObject *parent)
m_puppetAliveTimer.start(); m_puppetAliveTimer.start();
} }
NodeInstanceClientProxy::~NodeInstanceClientProxy() = default;
void NodeInstanceClientProxy::initializeSocket() void NodeInstanceClientProxy::initializeSocket()
{ {
QLocalSocket *localSocket = new QLocalSocket(this); QLocalSocket *localSocket = new QLocalSocket(this);

View File

@@ -70,6 +70,7 @@ class NodeInstanceClientProxy : public QObject, public NodeInstanceClientInterfa
public: public:
NodeInstanceClientProxy(QObject *parent); NodeInstanceClientProxy(QObject *parent);
~NodeInstanceClientProxy() override;
void informationChanged(const InformationChangedCommand &command) override; void informationChanged(const InformationChangedCommand &command) override;
void valuesChanged(const ValuesChangedCommand &command) override; void valuesChanged(const ValuesChangedCommand &command) override;