diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-05-26 08:32:28 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-05-26 08:32:28 (GMT) |
commit | b29a83e5070410359ebed2d99b18f86bbe2d2939 (patch) | |
tree | 12f80963df2780d58be36d6365e2c65852ef9e83 /src/declarative/fx/qfxparticles.h | |
parent | 19038ba0847d3b8ed476d8c3c1d29332d4f80677 (diff) | |
download | Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.zip Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.tar.gz Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.tar.bz2 |
Remove extraneous semicolons.
Caused massive number of warnings with winscw
Diffstat (limited to 'src/declarative/fx/qfxparticles.h')
-rw-r--r-- | src/declarative/fx/qfxparticles.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/fx/qfxparticles.h b/src/declarative/fx/qfxparticles.h index 31a00fb..9f0d04c 100644 --- a/src/declarative/fx/qfxparticles.h +++ b/src/declarative/fx/qfxparticles.h @@ -66,7 +66,7 @@ public: virtual void created(QFxParticle &); virtual void destroy(QFxParticle &); }; -QML_DECLARE_TYPE(QFxParticleMotion); +QML_DECLARE_TYPE(QFxParticleMotion) class Q_DECLARATIVE_EXPORT QFxParticleMotionLinear : public QFxParticleMotion { @@ -77,7 +77,7 @@ public: virtual void advance(QFxParticle &, int interval); }; -QML_DECLARE_TYPE(QFxParticleMotionLinear); +QML_DECLARE_TYPE(QFxParticleMotionLinear) class Q_DECLARATIVE_EXPORT QFxParticleMotionGravity : public QFxParticleMotion { @@ -106,7 +106,7 @@ private: int _yAttr; qreal _accel; }; -QML_DECLARE_TYPE(QFxParticleMotionGravity); +QML_DECLARE_TYPE(QFxParticleMotionGravity) class Q_DECLARATIVE_EXPORT QFxParticleMotionWander : public QFxParticleMotion { @@ -146,7 +146,7 @@ private: qreal _yvariance; qreal _pace; }; -QML_DECLARE_TYPE(QFxParticleMotionWander); +QML_DECLARE_TYPE(QFxParticleMotionWander) class QFxParticlesPrivate; class Q_DECLARATIVE_EXPORT QFxParticles : public QFxItem @@ -231,7 +231,7 @@ private: Q_DISABLE_COPY(QFxParticles) Q_DECLARE_PRIVATE(QFxParticles) }; -QML_DECLARE_TYPE(QFxParticles); +QML_DECLARE_TYPE(QFxParticles) QT_END_NAMESPACE |