QmlDesigner: fix build

Change-Id: I81211fbf55c72d7b55aff80720e2ff2a71cbdf4f
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Tim Jenssen
2016-11-29 18:27:20 +01:00
parent 1c3f4686da
commit 337393ce97
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ class JSObject : public QObject {
public:
JSObject() = default;
JSObject(QObject *parent = 0);
JSObject(QObject *parent);
void setModelNode(const ModelNode &node);
bool hasParent() const;
bool hasChildren() const;

View File

@@ -188,7 +188,7 @@ bool NodeHints::evaluateBooleanExpression(const QString &hintName, bool defaultV
namespace Internal {
QmlDesigner::Internal::JSObject::JSObject::JSObject(QObject *parent) : QObject(parent)
JSObject::JSObject(QObject *parent) : QObject (parent)
{
}