aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlbinding_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-04-15 22:23:28 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-27 05:20:21 +0000
commit4ee9c09a0b6f4e2cdf67ee9d87186691f3e1c0f9 (patch)
tree80280d357991ba441a6ead74baacef8867f67b81 /src/qml/qml/qqmlbinding_p.h
parent3bc239a0f16fb93f84def55a5980ef8561e7a7b4 (diff)
Make update() non virtual
It's only ever called on QQmlBinding objects. Change-Id: I50dd2996db9644e0df14ec930de17a7e621a0f47 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmlbinding_p.h')
-rw-r--r--src/qml/qml/qqmlbinding_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlbinding_p.h b/src/qml/qml/qqmlbinding_p.h
index 8c0a3fbe7e..e48c0d4066 100644
--- a/src/qml/qml/qqmlbinding_p.h
+++ b/src/qml/qml/qqmlbinding_p.h
@@ -87,7 +87,7 @@ public:
virtual QString expression() const;
virtual QObject *targetObject() const;
virtual int targetPropertyIndex() const;
- virtual void update(QQmlPropertyPrivate::WriteFlags flags = QQmlPropertyPrivate::DontRemoveBinding);
+ void update(QQmlPropertyPrivate::WriteFlags flags = QQmlPropertyPrivate::DontRemoveBinding);
typedef int Identifier;
static Identifier Invalid;