diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-05-26 23:05:28 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-05-26 23:05:28 (GMT) |
commit | d15db788de792815a35547059921d3305d48c119 (patch) | |
tree | cc599d805ac076fa0a67c00c4e1cd27da0307cde /src/declarative/util/qmlstategroup.h | |
parent | a43ea2e6f5feffa44119a54e25a9fffdd435c389 (diff) | |
download | Qt-d15db788de792815a35547059921d3305d48c119.zip Qt-d15db788de792815a35547059921d3305d48c119.tar.gz Qt-d15db788de792815a35547059921d3305d48c119.tar.bz2 |
Remove more unneeded semicolons.
Diffstat (limited to 'src/declarative/util/qmlstategroup.h')
-rw-r--r-- | src/declarative/util/qmlstategroup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/util/qmlstategroup.h b/src/declarative/util/qmlstategroup.h index ac9b8c3..ac1d917 100644 --- a/src/declarative/util/qmlstategroup.h +++ b/src/declarative/util/qmlstategroup.h @@ -55,11 +55,11 @@ class QmlStateGroup : public QObject, public QmlParserStatus { Q_OBJECT Q_INTERFACES(QmlParserStatus) - Q_DECLARE_PRIVATE(QmlStateGroup); + Q_DECLARE_PRIVATE(QmlStateGroup) - Q_PROPERTY(QString state READ state WRITE setState NOTIFY stateChanged); - Q_PROPERTY(QmlList<QmlState *>* states READ statesProperty DESIGNABLE false); - Q_PROPERTY(QmlList<QmlTransition *>* transitions READ transitionsProperty DESIGNABLE false); + Q_PROPERTY(QString state READ state WRITE setState NOTIFY stateChanged) + Q_PROPERTY(QmlList<QmlState *>* states READ statesProperty DESIGNABLE false) + Q_PROPERTY(QmlList<QmlTransition *>* transitions READ transitionsProperty DESIGNABLE false) public: QmlStateGroup(QObject * = 0); |