qml2puppet: s/Q_DECL_OVERRIDE/override/g

Change-Id: I4c582486572df9d94c53163321212b15dcc042cf
Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-06-03 15:34:34 +02:00
parent 8264b806af
commit ae477c3a4b
15 changed files with 107 additions and 107 deletions
@@ -49,12 +49,12 @@ public:
static Pointer create(QObject *objectToBeWrapped);
virtual void setPropertyVariant(const PropertyName &name, const QVariant &value) Q_DECL_OVERRIDE;
virtual void setPropertyBinding(const PropertyName &name, const QString &expression) Q_DECL_OVERRIDE;
virtual QVariant property(const PropertyName &name) const Q_DECL_OVERRIDE;
virtual void resetProperty(const PropertyName &name) Q_DECL_OVERRIDE;
virtual void setPropertyVariant(const PropertyName &name, const QVariant &value) override;
virtual void setPropertyBinding(const PropertyName &name, const QString &expression) override;
virtual QVariant property(const PropertyName &name) const override;
virtual void resetProperty(const PropertyName &name) override;
void reparent(const ObjectNodeInstance::Pointer &oldParentInstance, const PropertyName &oldParentProperty, const ObjectNodeInstance::Pointer &newParentInstance, const PropertyName &newParentProperty) Q_DECL_OVERRIDE;
void reparent(const ObjectNodeInstance::Pointer &oldParentInstance, const PropertyName &oldParentProperty, const ObjectNodeInstance::Pointer &newParentInstance, const PropertyName &newParentProperty) override;
protected:
QmlPropertyChangesNodeInstance(QObject *object);