diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-01 19:13:42 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-04-01 19:34:36 (GMT) |
commit | 020b637a96aae16bc9dc644fd8a4a05e75f6ed05 (patch) | |
tree | 4d5f9c71d2803f6f78ff07efe7c719f5f0b7b458 | |
parent | 29cef8ab2783bf28955c84f6da2f2cce1490f171 (diff) | |
download | Qt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.zip Qt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.tar.gz Qt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.tar.bz2 |
Fix compilation: no semi-colon after Q_ENUM or Q_PROPERTY
-rw-r--r-- | examples/declarative/extending/attached/person.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/extending/attached/person.h b/examples/declarative/extending/attached/person.h index 0f86d8b..08caebf 100644 --- a/examples/declarative/extending/attached/person.h +++ b/examples/declarative/extending/attached/person.h @@ -76,7 +76,7 @@ QML_DECLARE_TYPE(ShoeDescription); class Person : public QObject { Q_OBJECT Q_PROPERTY(QString name READ name WRITE setName) -Q_PROPERTY(ShoeDescription *shoe READ shoe); +Q_PROPERTY(ShoeDescription *shoe READ shoe) public: Person(QObject *parent = 0); |