summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-04-01 21:13:42 +0200
committerThiago Macieira <thiago.macieira@nokia.com>2010-04-01 21:34:36 +0200
commit020b637a96aae16bc9dc644fd8a4a05e75f6ed05 (patch)
tree4d5f9c71d2803f6f78ff07efe7c719f5f0b7b458
parent29cef8ab2783bf28955c84f6da2f2cce1490f171 (diff)
Fix compilation: no semi-colon after Q_ENUM or Q_PROPERTY
-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 0f86d8b76e..08caebfa63 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);