diff options
Diffstat (limited to 'examples/declarative/extending/grouped')
-rw-r--r-- | examples/declarative/extending/grouped/person.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/extending/grouped/person.h b/examples/declarative/extending/grouped/person.h index 5dab378..5ea2348 100644 --- a/examples/declarative/extending/grouped/person.h +++ b/examples/declarative/extending/grouped/person.h @@ -77,7 +77,7 @@ class Person : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name WRITE setName) // ![1] -Q_PROPERTY(ShoeDescription *shoe READ shoe); +Q_PROPERTY(ShoeDescription *shoe READ shoe) // ![1] public: Person(QObject *parent = 0); |