summaryrefslogtreecommitdiffstats
path: root/src/declarative/extra/qfxparticles.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/extra/qfxparticles.cpp')
-rw-r--r--src/declarative/extra/qfxparticles.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/extra/qfxparticles.cpp b/src/declarative/extra/qfxparticles.cpp
index a7b01dd..9f7319f 100644
--- a/src/declarative/extra/qfxparticles.cpp
+++ b/src/declarative/extra/qfxparticles.cpp
@@ -102,7 +102,7 @@ public:
//---------------------------------------------------------------------------
-QML_DEFINE_TYPE(QFxParticleMotion,ParticleMotion)
+QML_DEFINE_TYPE(Qt,4.6,ParticleMotion,QFxParticleMotion)
/*!
\class QFxParticleMotion
@@ -162,7 +162,7 @@ void QFxParticleMotion::destroy(QFxParticle &particle)
\brief The QFxParticleMotionLinear class moves the particles linearly.
*/
-QML_DEFINE_TYPE(QFxParticleMotionLinear,ParticleMotionLinear)
+QML_DEFINE_TYPE(Qt,4.6,ParticleMotionLinear,QFxParticleMotionLinear)
void QFxParticleMotionLinear::advance(QFxParticle &p, int interval)
{
@@ -184,7 +184,7 @@ void QFxParticleMotionLinear::advance(QFxParticle &p, int interval)
\brief The QFxParticleMotionGravity class moves the particles towards a point.
*/
-QML_DEFINE_TYPE(QFxParticleMotionGravity,ParticleMotionGravity)
+QML_DEFINE_TYPE(Qt,4.6,ParticleMotionGravity,QFxParticleMotionGravity)
/*!
\qmlproperty int ParticleMotionGravity::xattractor
@@ -286,7 +286,7 @@ Rect {
This property holds how quickly the paricles will move from side to side.
*/
-QML_DEFINE_TYPE(QFxParticleMotionWander,ParticleMotionWander)
+QML_DEFINE_TYPE(Qt,4.6,ParticleMotionWander,QFxParticleMotionWander)
void QFxParticleMotionWander::advance(QFxParticle &p, int interval)
{
@@ -528,7 +528,7 @@ void QFxParticlesPrivate::updateOpacity(QFxParticle &p, int age)
}
}
-QML_DEFINE_TYPE(QFxParticles,Particles)
+QML_DEFINE_TYPE(Qt,4.6,Particles,QFxParticles)
/*!
\qmlclass Particles