aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlvaluetypeproxybinding_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-04-20 09:38:07 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-05 10:07:50 +0000
commita775e43ae8872e344924581736c0ab933e12510d (patch)
treef02d240abb2f2c7ac410f3ae84049923a6f0969e /src/qml/qml/qqmlvaluetypeproxybinding_p.h
parent6e1a4bf12846e6a68931a924890f54b433a42d1c (diff)
Replace bindingType() method by a virtual getter
This removes the need to save some bits in the abstract binding object, and should make it easier to move QQmlAbstractBinding over to be reference counted. Change-Id: Ib46cb3217f3dc462f1dcaa6153d90ea2f7401f48 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/qml/qqmlvaluetypeproxybinding_p.h')
-rw-r--r--src/qml/qml/qqmlvaluetypeproxybinding_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlvaluetypeproxybinding_p.h b/src/qml/qml/qqmlvaluetypeproxybinding_p.h
index f6d9c0abc1..7ddd5c1d93 100644
--- a/src/qml/qml/qqmlvaluetypeproxybinding_p.h
+++ b/src/qml/qml/qqmlvaluetypeproxybinding_p.h
@@ -58,6 +58,7 @@ public:
void removeBindings(quint32 mask);
virtual void setEnabled(bool, QQmlPropertyPrivate::WriteFlags);
+ virtual bool isValueTypeProxy() const;
protected:
~QQmlValueTypeProxyBinding();