aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickparticlesystem.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/qquickparticlesystem.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/qquickparticlesystem.cpp')
-rw-r--r--src/particles/qquickparticlesystem.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/particles/qquickparticlesystem.cpp b/src/particles/qquickparticlesystem.cpp
index b13020fc7d..b95b084756 100644
--- a/src/particles/qquickparticlesystem.cpp
+++ b/src/particles/qquickparticlesystem.cpp
@@ -110,7 +110,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlproperty bool QtQuick.Particles2::ParticleSystem::running
+ \qmlproperty bool QtQuick.Particles::ParticleSystem::running
If running is set to false, the particle system will stop the simulation. All particles
will be destroyed when the system is set to running again.
@@ -120,7 +120,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
/*!
- \qmlproperty bool QtQuick.Particles2::ParticleSystem::paused
+ \qmlproperty bool QtQuick.Particles::ParticleSystem::paused
If paused is set to true, the particle system will not advance the simulation. When
paused is set to false again, the simulation will resume from the same point it was
@@ -133,7 +133,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlproperty bool QtQuick.Particles2::ParticleSystem::empty
+ \qmlproperty bool QtQuick.Particles::ParticleSystem::empty
empty is set to true when there are no live particles left in the system.
@@ -145,19 +145,19 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlproperty list<Sprite> QtQuick.Particles2::ParticleSystem::particleStates
+ \qmlproperty list<Sprite> QtQuick.Particles::ParticleSystem::particleStates
You can define a sub-set of particle groups in this property in order to provide them
with stochastic state transitions.
- Each QtQuick2::Sprite in this list is interpreted as corresponding to the particle group
+ Each QtQuick::Sprite in this list is interpreted as corresponding to the particle group
with ths same name. Any transitions defined in these sprites will take effect on the particle
groups as well. Additionally TrailEmitters, Affectors and ParticlePainters definined
inside one of these sprites are automatically associated with the corresponding particle group.
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::pause()
+ \qmlmethod QtQuick.Particles::ParticleSystem::pause()
Pauses the simulation if it is running.
@@ -165,7 +165,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::resume()
+ \qmlmethod QtQuick.Particles::ParticleSystem::resume()
Resumes the simulation if it is paused.
@@ -173,7 +173,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::start()
+ \qmlmethod QtQuick.Particles::ParticleSystem::start()
Starts the simulation if it has not already running.
@@ -181,7 +181,7 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::stop()
+ \qmlmethod QtQuick.Particles::ParticleSystem::stop()
Stops the simulation if it is running.
@@ -189,14 +189,14 @@ DEFINE_BOOL_CONFIG_OPTION(qmlParticlesDebug, QML_PARTICLES_DEBUG)
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::restart()
+ \qmlmethod QtQuick.Particles::ParticleSystem::restart()
Stops the simulation if it is running, and then starts it.
\sa stop, restart, running
*/
/*!
- \qmlmethod QtQuick.Particles2::ParticleSystem::reset()
+ \qmlmethod QtQuick.Particles::ParticleSystem::reset()
Discards all currently existing particles.