summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlbinding.h
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2010-01-11 06:32:53 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2010-01-11 06:35:18 (GMT)
commit26021de11bf8cfd3f2067466b8be97d42316b8b4 (patch)
tree3a16f21c268f343a32d6a57a374339a167890f17 /src/declarative/qml/qmlbinding.h
parentaa6ec25bdf0e69873b537e05d4511543b21f3e8a (diff)
downloadQt-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.h')
-rw-r--r--src/declarative/qml/qmlbinding.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlbinding.h b/src/declarative/qml/qmlbinding.h
index 242742a..cefb4fe 100644
--- a/src/declarative/qml/qmlbinding.h
+++ b/src/declarative/qml/qmlbinding.h
@@ -114,7 +114,7 @@ public Q_SLOTS:
void update() { update(QmlMetaProperty::DontRemoveBinding); }
protected:
- virtual void valueChanged();
+ void emitValueChanged();
private:
Q_DECLARE_PRIVATE(QmlBinding)