aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickparticleaffector.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/qquickparticleaffector.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/qquickparticleaffector.cpp')
-rw-r--r--src/particles/qquickparticleaffector.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/particles/qquickparticleaffector.cpp b/src/particles/qquickparticleaffector.cpp
index f9885520c9..7c72c27b74 100644
--- a/src/particles/qquickparticleaffector.cpp
+++ b/src/particles/qquickparticleaffector.cpp
@@ -68,18 +68,18 @@ QT_BEGIN_NAMESPACE
but on less capable hardware you should expect small irregularties in the simulation as simulates with worse granularity.
*/
/*!
- \qmlproperty ParticleSystem QtQuick.Particles2::Affector::system
+ \qmlproperty ParticleSystem QtQuick.Particles::Affector::system
This is the system which will be affected by the element.
If the Affector is a direct child of a ParticleSystem, it will automatically be associated with it.
*/
/*!
- \qmlproperty list<string> QtQuick.Particles2::Affector::groups
+ \qmlproperty list<string> QtQuick.Particles::Affector::groups
Which logical particle groups will be affected.
If empty, it will affect all particles.
*/
/*!
- \qmlproperty list<string> QtQuick.Particles2::Affector::whenCollidingWith
+ \qmlproperty list<string> QtQuick.Particles::Affector::whenCollidingWith
If any logical particle groups are specified here, then the affector
will only be triggered if the particle being examined intersects with
a particle of one of these groups.
@@ -93,7 +93,7 @@ QT_BEGIN_NAMESPACE
By default, no groups are specified.
*/
/*!
- \qmlproperty bool QtQuick.Particles2::Affector::enabled
+ \qmlproperty bool QtQuick.Particles::Affector::enabled
If enabled is set to false, this affector will not affect any particles.
Usually this is used to conditionally turn an affector on or off.
@@ -101,7 +101,7 @@ QT_BEGIN_NAMESPACE
Default value is true.
*/
/*!
- \qmlproperty bool QtQuick.Particles2::Affector::once
+ \qmlproperty bool QtQuick.Particles::Affector::once
If once is set to true, this affector will only affect each particle
once in their lifetimes. If the affector normally simulates a continuous
effect over time, then it will simulate the effect of one second of time
@@ -110,12 +110,12 @@ QT_BEGIN_NAMESPACE
Default value is false.
*/
/*!
- \qmlproperty Shape QtQuick.Particles2::Affector::shape
+ \qmlproperty Shape QtQuick.Particles::Affector::shape
If a size has been defined, the shape property can be used to affect a
non-rectangular area.
*/
/*!
- \qmlsignal QtQuick.Particles2::Affector::onAffected(real x, real y)
+ \qmlsignal QtQuick.Particles::Affector::onAffected(real x, real y)
This handler is called when a particle is selected to be affected. It will not be called
if a particle is considered by the Affector but not actually altered in any way.