aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickspringanimation.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/quick/util/qquickspringanimation.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/quick/util/qquickspringanimation.cpp')
-rw-r--r--src/quick/util/qquickspringanimation.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/quick/util/qquickspringanimation.cpp b/src/quick/util/qquickspringanimation.cpp
index 0568879382..f663491a58 100644
--- a/src/quick/util/qquickspringanimation.cpp
+++ b/src/quick/util/qquickspringanimation.cpp
@@ -383,7 +383,7 @@ QQuickSpringAnimation::~QQuickSpringAnimation()
}
/*!
- \qmlproperty real QtQuick2::SpringAnimation::velocity
+ \qmlproperty real QtQuick::SpringAnimation::velocity
This property holds the maximum velocity allowed when tracking the source.
@@ -405,7 +405,7 @@ void QQuickSpringAnimation::setVelocity(qreal velocity)
}
/*!
- \qmlproperty real QtQuick2::SpringAnimation::spring
+ \qmlproperty real QtQuick::SpringAnimation::spring
This property describes how strongly the target is pulled towards the
source. The default value is 0 (that is, the spring-like motion is disabled).
@@ -429,7 +429,7 @@ void QQuickSpringAnimation::setSpring(qreal spring)
}
/*!
- \qmlproperty real QtQuick2::SpringAnimation::damping
+ \qmlproperty real QtQuick::SpringAnimation::damping
This property holds the spring damping value.
This value describes how quickly the spring-like motion comes to rest.
@@ -455,7 +455,7 @@ void QQuickSpringAnimation::setDamping(qreal damping)
/*!
- \qmlproperty real QtQuick2::SpringAnimation::epsilon
+ \qmlproperty real QtQuick::SpringAnimation::epsilon
This property holds the spring epsilon.
The epsilon is the rate and amount of change in the value which is close enough
@@ -477,7 +477,7 @@ void QQuickSpringAnimation::setEpsilon(qreal epsilon)
}
/*!
- \qmlproperty real QtQuick2::SpringAnimation::modulus
+ \qmlproperty real QtQuick::SpringAnimation::modulus
This property holds the modulus value. The default value is 0.
Setting a \a modulus forces the target value to "wrap around" at the modulus.
@@ -501,7 +501,7 @@ void QQuickSpringAnimation::setModulus(qreal modulus)
}
/*!
- \qmlproperty real QtQuick2::SpringAnimation::mass
+ \qmlproperty real QtQuick::SpringAnimation::mass
This property holds the "mass" of the property being moved.
The value is 1.0 by default.