diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-10-08 08:30:19 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-10-08 08:30:19 (GMT) |
commit | 6f5c3d1c6f9d3a826821d12139070e9772eae749 (patch) | |
tree | 6262f38bb072c4efa69d93b7c8f455a9046efe85 /src/declarative/qml/qmlcomponentjs_p.h | |
parent | e2ed7541bace9c2b0845b2f9b51611d41874a601 (diff) | |
download | Qt-6f5c3d1c6f9d3a826821d12139070e9772eae749.zip Qt-6f5c3d1c6f9d3a826821d12139070e9772eae749.tar.gz Qt-6f5c3d1c6f9d3a826821d12139070e9772eae749.tar.bz2 |
Remove a bunch of unneeded semicolons.
Diffstat (limited to 'src/declarative/qml/qmlcomponentjs_p.h')
-rw-r--r-- | src/declarative/qml/qmlcomponentjs_p.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/qml/qmlcomponentjs_p.h b/src/declarative/qml/qmlcomponentjs_p.h index cee3035..0f56766 100644 --- a/src/declarative/qml/qmlcomponentjs_p.h +++ b/src/declarative/qml/qmlcomponentjs_p.h @@ -73,10 +73,10 @@ class Q_DECLARATIVE_EXPORT QmlComponentJS : public QmlComponent public: QmlComponentJS(QmlEngine *, const QUrl &url, QObject *parent = 0); QmlComponentJS(QmlEngine *, QObject *parent=0); - Q_PROPERTY(bool isNull READ isNull NOTIFY isNullChanged); - Q_PROPERTY(bool isReady READ isReady NOTIFY isReadyChanged); - Q_PROPERTY(bool isError READ isError NOTIFY isErrorChanged); - Q_PROPERTY(bool isLoading READ isLoading NOTIFY isLoadingChanged); + Q_PROPERTY(bool isNull READ isNull NOTIFY isNullChanged) + Q_PROPERTY(bool isReady READ isReady NOTIFY isReadyChanged) + Q_PROPERTY(bool isError READ isError NOTIFY isErrorChanged) + Q_PROPERTY(bool isLoading READ isLoading NOTIFY isLoadingChanged) Q_INVOKABLE QScriptValue createObject(); Q_INVOKABLE QString errorsString() const; |