diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 06:32:53 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 06:35:18 (GMT) |
commit | 26021de11bf8cfd3f2067466b8be97d42316b8b4 (patch) | |
tree | 3a16f21c268f343a32d6a57a374339a167890f17 /src/declarative/qml/qmlbinding.cpp | |
parent | aa6ec25bdf0e69873b537e05d4511543b21f3e8a (diff) | |
download | Qt-26021de11bf8cfd3f2067466b8be97d42316b8b4.zip Qt-26021de11bf8cfd3f2067466b8be97d42316b8b4.tar.gz Qt-26021de11bf8cfd3f2067466b8be97d42316b8b4.tar.bz2 |
Don't use a virtual signal - moc complains.
Diffstat (limited to 'src/declarative/qml/qmlbinding.cpp')
-rw-r--r-- | src/declarative/qml/qmlbinding.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlbinding.cpp b/src/declarative/qml/qmlbinding.cpp index d1a8fe8..4ec7191 100644 --- a/src/declarative/qml/qmlbinding.cpp +++ b/src/declarative/qml/qmlbinding.cpp @@ -225,9 +225,10 @@ void QmlBinding::update(QmlMetaProperty::WriteFlags flags) data->release(); } -void QmlBinding::valueChanged() +void QmlBinding::emitValueChanged() { update(); + // don't bother calling valueChanged() } void QmlBinding::setEnabled(bool e, QmlMetaProperty::WriteFlags flags) |