summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcomponent.h
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-06-12 04:58:02 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-06-12 04:58:02 (GMT)
commita5ada9a111c8ba7804eff7fe6e11bf991bf67386 (patch)
tree5227e95fc6b925fce07fc73a0047d55d0fac7a37 /src/declarative/qml/qmlcomponent.h
parentf88167c39259967912540cf50d3f9df9524da4b3 (diff)
downloadQt-a5ada9a111c8ba7804eff7fe6e11bf991bf67386.zip
Qt-a5ada9a111c8ba7804eff7fe6e11bf991bf67386.tar.gz
Qt-a5ada9a111c8ba7804eff7fe6e11bf991bf67386.tar.bz2
Remove unneeded semicolons.
Diffstat (limited to 'src/declarative/qml/qmlcomponent.h')
-rw-r--r--src/declarative/qml/qmlcomponent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcomponent.h b/src/declarative/qml/qmlcomponent.h
index fe0c422..ae2f362 100644
--- a/src/declarative/qml/qmlcomponent.h
+++ b/src/declarative/qml/qmlcomponent.h
@@ -71,7 +71,7 @@ public:
const QUrl &baseUrl=QUrl(), QObject *parent=0);
virtual ~QmlComponent();
- Q_ENUMS( Status );
+ Q_ENUMS(Status)
enum Status { Null, Ready, Loading, Error };
Status status() const;
@@ -104,7 +104,7 @@ private:
friend class QmlVME;
friend struct QmlCompositeTypeData;
};
-Q_DECLARE_METATYPE(QmlComponent::Status);
+Q_DECLARE_METATYPE(QmlComponent::Status)
QML_DECLARE_TYPE(QmlComponent)
QT_END_NAMESPACE