diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2010-03-18 12:28:46 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2010-03-18 12:35:08 (GMT) |
commit | 3adbf7ce04766c25b68d23087ed9a281d05f29b5 (patch) | |
tree | 64fe916e93224935d627076f66244b5294e763dc /tests/auto/declarative/qdeclarativeproperty | |
parent | 5f71d6d05e277ad6b90b6a829c599eed1ec8d59e (diff) | |
download | Qt-3adbf7ce04766c25b68d23087ed9a281d05f29b5.zip Qt-3adbf7ce04766c25b68d23087ed9a281d05f29b5.tar.gz Qt-3adbf7ce04766c25b68d23087ed9a281d05f29b5.tar.bz2 |
Remove ; after Q_PROPERTY declaration
Diffstat (limited to 'tests/auto/declarative/qdeclarativeproperty')
-rw-r--r-- | tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp b/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp index 7828ed8..2288462 100644 --- a/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp +++ b/tests/auto/declarative/qdeclarativeproperty/tst_qdeclarativeproperty.cpp @@ -183,13 +183,13 @@ void tst_qdeclarativeproperty::qmlmetaproperty() class PropertyObject : public QObject { Q_OBJECT - Q_PROPERTY(int defaultProperty READ defaultProperty); - Q_PROPERTY(QRect rectProperty READ rectProperty); - Q_PROPERTY(QRect wrectProperty READ wrectProperty WRITE setWRectProperty); - Q_PROPERTY(QUrl url READ url WRITE setUrl); - Q_PROPERTY(int resettableProperty READ resettableProperty WRITE setResettableProperty RESET resetProperty); + Q_PROPERTY(int defaultProperty READ defaultProperty) + Q_PROPERTY(QRect rectProperty READ rectProperty) + Q_PROPERTY(QRect wrectProperty READ wrectProperty WRITE setWRectProperty) + Q_PROPERTY(QUrl url READ url WRITE setUrl) + Q_PROPERTY(int resettableProperty READ resettableProperty WRITE setResettableProperty RESET resetProperty) Q_PROPERTY(int propertyWithNotify READ propertyWithNotify WRITE setPropertyWithNotify NOTIFY oddlyNamedNotifySignal) - Q_PROPERTY(MyQmlObject *qmlObject READ qmlObject); + Q_PROPERTY(MyQmlObject *qmlObject READ qmlObject) Q_CLASSINFO("DefaultProperty", "defaultProperty") public: |