summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-04-01 19:13:42 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-04-01 19:34:36 (GMT)
commit020b637a96aae16bc9dc644fd8a4a05e75f6ed05 (patch)
tree4d5f9c71d2803f6f78ff07efe7c719f5f0b7b458 /examples
parent29cef8ab2783bf28955c84f6da2f2cce1490f171 (diff)
downloadQt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.zip
Qt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.tar.gz
Qt-020b637a96aae16bc9dc644fd8a4a05e75f6ed05.tar.bz2
Fix compilation: no semi-colon after Q_ENUM or Q_PROPERTY
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/extending/attached/person.h2
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);