forked from qt-creator/qt-creator
QmlDesigner: fix build
Change-Id: I81211fbf55c72d7b55aff80720e2ff2a71cbdf4f Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
@@ -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;
|
||||
|
@@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user