aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickcustomaffector.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/qquickcustomaffector.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/qquickcustomaffector.cpp')
-rw-r--r--src/particles/qquickcustomaffector.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/particles/qquickcustomaffector.cpp b/src/particles/qquickcustomaffector.cpp
index 7c4d45d24e..890d415e3f 100644
--- a/src/particles/qquickcustomaffector.cpp
+++ b/src/particles/qquickcustomaffector.cpp
@@ -49,7 +49,7 @@ QT_BEGIN_NAMESPACE
//TODO: Move docs (and inheritence) to real base when docs can propagate. Currently this pretends to be the base class!
/*!
- \qmlsignal QtQuick.Particles2::Affector::onAffectParticles(Array particles, real dt)
+ \qmlsignal QtQuick.Particles::Affector::onAffectParticles(Array particles, real dt)
This handler is called when particles are selected to be affected. particles contains
an array of particle objects which can be directly manipulated.
@@ -62,7 +62,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty StochasticDirection QtQuick.Particles2::Affector::position
+ \qmlproperty StochasticDirection QtQuick.Particles::Affector::position
Affected particles will have their position set to this direction,
relative to the ParticleSystem. When interpreting directions as points,
@@ -71,21 +71,21 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty StochasticDirection QtQuick.Particles2::Affector::velocity
+ \qmlproperty StochasticDirection QtQuick.Particles::Affector::velocity
Affected particles will have their velocity set to this direction.
*/
/*!
- \qmlproperty StochasticDirection QtQuick.Particles2::Affector::acceleration
+ \qmlproperty StochasticDirection QtQuick.Particles::Affector::acceleration
Affected particles will have their acceleration set to this direction.
*/
/*!
- \qmlproperty bool QtQuick.Particles2::Affector::relative
+ \qmlproperty bool QtQuick.Particles::Affector::relative
Whether the affected particles have their existing position/velocity/acceleration added
to the new one.