aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickanimatedimage.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/items/qquickanimatedimage.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/items/qquickanimatedimage.cpp')
-rw-r--r--src/quick/items/qquickanimatedimage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/quick/items/qquickanimatedimage.cpp b/src/quick/items/qquickanimatedimage.cpp
index d8dbace0de..3f31884cd3 100644
--- a/src/quick/items/qquickanimatedimage.cpp
+++ b/src/quick/items/qquickanimatedimage.cpp
@@ -90,7 +90,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty url QtQuick2::AnimatedImage::source
+ \qmlproperty url QtQuick::AnimatedImage::source
This property holds the URL that refers to the source image.
@@ -114,7 +114,7 @@ QQuickAnimatedImage::~QQuickAnimatedImage()
}
/*!
- \qmlproperty bool QtQuick2::AnimatedImage::paused
+ \qmlproperty bool QtQuick::AnimatedImage::paused
This property holds whether the animated image is paused.
By default, this property is false. Set it to true when you want to pause
@@ -143,7 +143,7 @@ void QQuickAnimatedImage::setPaused(bool pause)
}
/*!
- \qmlproperty bool QtQuick2::AnimatedImage::playing
+ \qmlproperty bool QtQuick::AnimatedImage::playing
This property holds whether the animated image is playing.
By default, this property is true, meaning that the animation
@@ -185,8 +185,8 @@ void QQuickAnimatedImage::setPlaying(bool play)
}
/*!
- \qmlproperty int QtQuick2::AnimatedImage::currentFrame
- \qmlproperty int QtQuick2::AnimatedImage::frameCount
+ \qmlproperty int QtQuick::AnimatedImage::currentFrame
+ \qmlproperty int QtQuick::AnimatedImage::frameCount
currentFrame is the frame that is currently visible. By monitoring this property
for changes, you can animate other items at the same time as the image.