summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/binding
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-10-02 02:21:12 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-10-02 02:21:40 (GMT)
commitd535797f7fd5eebbc5d0128a477c57f71632a377 (patch)
tree4a126440ad3fb5b038bd9937a4ee66a2097a72c5 /examples/declarative/extending/binding
parent297dcaaef5741dac5e10c886db1755829e4ed082 (diff)
downloadQt-d535797f7fd5eebbc5d0128a477c57f71632a377.zip
Qt-d535797f7fd5eebbc5d0128a477c57f71632a377.tar.gz
Qt-d535797f7fd5eebbc5d0128a477c57f71632a377.tar.bz2
Make compile since QmlValuePropertySource is no longer a Qobject.
Diffstat (limited to 'examples/declarative/extending/binding')
-rw-r--r--examples/declarative/extending/binding/happybirthday.cpp2
-rw-r--r--examples/declarative/extending/binding/happybirthday.h6
2 files changed, 6 insertions, 2 deletions
diff --git a/examples/declarative/extending/binding/happybirthday.cpp b/examples/declarative/extending/binding/happybirthday.cpp
index d1f485e..dd1247f 100644
--- a/examples/declarative/extending/binding/happybirthday.cpp
+++ b/examples/declarative/extending/binding/happybirthday.cpp
@@ -2,7 +2,7 @@
#include <QTimer>
HappyBirthday::HappyBirthday(QObject *parent)
-: QmlPropertyValueSource(parent), m_line(-1)
+: QObject(parent), m_line(-1)
{
setName(QString());
QTimer *timer = new QTimer(this);
diff --git a/examples/declarative/extending/binding/happybirthday.h b/examples/declarative/extending/binding/happybirthday.h
index 3039db2..fff2df0 100644
--- a/examples/declarative/extending/binding/happybirthday.h
+++ b/examples/declarative/extending/binding/happybirthday.h
@@ -2,8 +2,12 @@
#define HAPPYBIRTHDAY_H
#include <QmlPropertyValueSource>
+#include <QmlMetaProperty>
+#include <qml.h>
-class HappyBirthday : public QmlPropertyValueSource
+#include <QStringList>
+
+class HappyBirthday : public QObject, public QmlPropertyValueSource
{
Q_OBJECT
Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)