forked from qt-creator/qt-creator
qml2puppet: s/Q_DECL_OVERRIDE/override/g
Change-Id: I4c582486572df9d94c53163321212b15dcc042cf Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user