aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickitemparticle.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/qquickitemparticle.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/qquickitemparticle.cpp')
-rw-r--r--src/particles/qquickitemparticle.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/particles/qquickitemparticle.cpp b/src/particles/qquickitemparticle.cpp
index 7bc696e65f..728da57212 100644
--- a/src/particles/qquickitemparticle.cpp
+++ b/src/particles/qquickitemparticle.cpp
@@ -59,19 +59,19 @@ QT_BEGIN_NAMESPACE
/*!
- \qmlmethod QtQuick.Particles2::ItemParticle::freeze(Item item)
+ \qmlmethod QtQuick.Particles::ItemParticle::freeze(Item item)
Suspends the flow of time for the logical particle which item represents, allowing you to control its movement.
*/
/*!
- \qmlmethod QtQuick.Particles2::ItemParticle::unfreeze(Item item)
+ \qmlmethod QtQuick.Particles::ItemParticle::unfreeze(Item item)
Restarts the flow of time for the logical particle which item represents, allowing it to be moved by the particle system again.
*/
/*!
- \qmlmethod QtQuick.Particles2::ItemParticle::take(Item item, bool prioritize)
+ \qmlmethod QtQuick.Particles::ItemParticle::take(Item item, bool prioritize)
Asks the ItemParticle to take over control of item. It will be emitted when there is a logical particle available.
@@ -79,13 +79,13 @@ QT_BEGIN_NAMESPACE
head of the queue.
*/
/*!
- \qmlmethod QtQuick.Particles2::ItemParticle::give(Item item)
+ \qmlmethod QtQuick.Particles::ItemParticle::give(Item item)
Orders the ItemParticle to give you control of the item. It will cease controlling it and the item will lose its association to the logical particle.
*/
/*!
- \qmlproperty bool QtQuick.Particles2::ItemParticle::fade
+ \qmlproperty bool QtQuick.Particles::ItemParticle::fade
If true, the item will automatically be faded in and out
at the ends of its lifetime. If false, you will have to
@@ -94,7 +94,7 @@ QT_BEGIN_NAMESPACE
Default is true.
*/
/*!
- \qmlproperty Component QtQuick.Particles2::ItemParticle::delegate
+ \qmlproperty Component QtQuick.Particles::ItemParticle::delegate
An instance of the delegate will be created for every logical
particle, and moved along with it.