QmlDesigner: Fix ignored properties for reparenting

We reparented into ignored properties. Now there is a more general mechanism
to prevent this.

Task-number: QTCREATORBUG-11970
Change-Id: Icbd5877dc13c65963079eb3ab67e48bb92056b53
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Marco Bubke
2014-04-17 17:41:18 +02:00
parent 1c7fc450cc
commit e9096120ad
11 changed files with 72 additions and 72 deletions
@@ -44,15 +44,14 @@ public:
static Pointer create(QObject *objectToBeWrapped);
void setPropertyVariant(const PropertyName &name, const QVariant &value) Q_DECL_OVERRIDE;
void setPropertyBinding(const PropertyName &name, const QString &expression) Q_DECL_OVERRIDE;
bool isLayoutable() const Q_DECL_OVERRIDE;
bool isResizable() const Q_DECL_OVERRIDE;
void refreshLayoutable() Q_DECL_OVERRIDE;
PropertyNameList ignoredProperties() const Q_DECL_OVERRIDE;
protected:
LayoutNodeInstance(QQuickItem *item);
};