aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquicktrailemitter.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-10-01 13:03:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-02 14:40:01 +0200
commit4706b1ceff9af9141044ed3cf020ce5624bfa40f (patch)
tree43672217a945512ddd1704468d1fd4b6e9c153c7 /src/particles/qquicktrailemitter.cpp
parent4f50ab594aa2fb1d38981127beca634ad3396489 (diff)
qdoc: no longer recognizes the version nr in QML refs
All QML references of the form <QML-module-name><QML-module-version>::<QML-type>::<member-name> have had the <QML-module-version> removed i. Task-number: QTBUG-33776 Change-Id: Idde279e0f254cd24ea44f9841662dd81a2c5bbc6 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/particles/qquicktrailemitter.cpp')
-rw-r--r--src/particles/qquicktrailemitter.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/particles/qquicktrailemitter.cpp b/src/particles/qquicktrailemitter.cpp
index 7b5788f467..cbc738fba5 100644
--- a/src/particles/qquicktrailemitter.cpp
+++ b/src/particles/qquicktrailemitter.cpp
@@ -76,12 +76,12 @@ QQuickTrailEmitter::QQuickTrailEmitter(QQuickItem *parent) :
}
/*!
- \qmlproperty string QtQuick.Particles2::TrailEmitter::follow
+ \qmlproperty string QtQuick.Particles::TrailEmitter::follow
The type of logical particle which this is emitting from.
*/
/*!
- \qmlproperty qreal QtQuick.Particles2::TrailEmitter::velocityFromMovement
+ \qmlproperty qreal QtQuick.Particles::TrailEmitter::velocityFromMovement
If this value is non-zero, then any movement of the emitter will provide additional
starting velocity to the particles based on the movement. The additional vector will be the
@@ -91,7 +91,7 @@ QQuickTrailEmitter::QQuickTrailEmitter(QQuickItem *parent) :
Default value is 0.
*/
/*!
- \qmlproperty Shape QtQuick.Particles2::TrailEmitter::emitShape
+ \qmlproperty Shape QtQuick.Particles::TrailEmitter::emitShape
As the area of a TrailEmitter is the area it follows, a separate shape can be provided
to be the shape it emits out of. This shape has width and height specified by emitWidth
@@ -100,7 +100,7 @@ QQuickTrailEmitter::QQuickTrailEmitter(QQuickItem *parent) :
The default shape is a filled Rectangle.
*/
/*!
- \qmlproperty real QtQuick.Particles2::TrailEmitter::emitWidth
+ \qmlproperty real QtQuick.Particles::TrailEmitter::emitWidth
The width in pixels the emitShape is scaled to. If set to TrailEmitter.ParticleSize,
the width will be the current size of the particle being followed.
@@ -108,7 +108,7 @@ QQuickTrailEmitter::QQuickTrailEmitter(QQuickItem *parent) :
Default is 0.
*/
/*!
- \qmlproperty real QtQuick.Particles2::TrailEmitter::emitHeight
+ \qmlproperty real QtQuick.Particles::TrailEmitter::emitHeight
The height in pixels the emitShape is scaled to. If set to TrailEmitter.ParticleSize,
the height will be the current size of the particle being followed.
@@ -116,10 +116,10 @@ QQuickTrailEmitter::QQuickTrailEmitter(QQuickItem *parent) :
Default is 0.
*/
/*!
- \qmlproperty real QtQuick.Particles2::TrailEmitter::emitRatePerParticle
+ \qmlproperty real QtQuick.Particles::TrailEmitter::emitRatePerParticle
*/
/*!
- \qmlsignal QtQuick.Particles2::TrailEmitter::onEmitFollowParticles(Array particles, Particle followed)
+ \qmlsignal QtQuick.Particles::TrailEmitter::onEmitFollowParticles(Array particles, Particle followed)
This handler is called when particles are emitted from the \a followed particle. \a particles contains an array of particle objects which can be directly manipulated.