summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/binding/person.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/extending/binding/person.h')
-rw-r--r--examples/declarative/extending/binding/person.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/extending/binding/person.h b/examples/declarative/extending/binding/person.h
index 1bec71c..2d4ec12 100644
--- a/examples/declarative/extending/binding/person.h
+++ b/examples/declarative/extending/binding/person.h
@@ -80,7 +80,7 @@ class Person : public QObject {
Q_OBJECT
Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
// ![0]
-Q_PROPERTY(ShoeDescription *shoe READ shoe CONSTANT);
+Q_PROPERTY(ShoeDescription *shoe READ shoe CONSTANT)
// ![0]
public:
Person(QObject *parent = 0);