aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v8/qv8bindings_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/v8/qv8bindings_p.h')
-rw-r--r--src/qml/qml/v8/qv8bindings_p.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/qml/qml/v8/qv8bindings_p.h b/src/qml/qml/v8/qv8bindings_p.h
index 7cc1cc9c21..fc6617b516 100644
--- a/src/qml/qml/v8/qv8bindings_p.h
+++ b/src/qml/qml/v8/qv8bindings_p.h
@@ -93,13 +93,16 @@ public:
static QString expressionIdentifier(QQmlJavaScriptExpression *);
static void expressionChanged(QQmlJavaScriptExpression *);
- // Inherited from QQmlAbstractBinding
- virtual void setEnabled(bool, QQmlPropertyPrivate::WriteFlags flags);
- virtual void update(QQmlPropertyPrivate::WriteFlags flags);
- virtual void destroy();
- virtual QObject *object() const;
- virtual int propertyIndex() const;
- virtual void retargetBinding(QObject *, int);
+ // "Inherited" from QQmlAbstractBinding
+ static void destroy(QQmlAbstractBinding *);
+ static int propertyIndex(const QQmlAbstractBinding *);
+ static QObject *object(const QQmlAbstractBinding *);
+ static void setEnabled(QQmlAbstractBinding *, bool, QQmlPropertyPrivate::WriteFlags);
+ static void update(QQmlAbstractBinding *, QQmlPropertyPrivate::WriteFlags);
+ static void retargetBinding(QQmlAbstractBinding *, QObject *, int);
+
+ QObject *object() const;
+ void update(QQmlPropertyPrivate::WriteFlags flags);
QV8Bindings *parent;