diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-08 05:07:54 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-08 05:07:54 (GMT) |
commit | 9fd2d52881356fb214213f139a2f25081fc848e4 (patch) | |
tree | 41902768ff80a3ba81df3fe75cf25a12bd241822 /src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp | |
parent | 31ec693cd6ae4cf5a2533092f45ba9bb154ba152 (diff) | |
download | Qt-9fd2d52881356fb214213f139a2f25081fc848e4.zip Qt-9fd2d52881356fb214213f139a2f25081fc848e4.tar.gz Qt-9fd2d52881356fb214213f139a2f25081fc848e4.tar.bz2 |
Fix AnimatedImage for remote image test. Fix and test sourceSize property.
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp index f14f773..cc062f0 100644 --- a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp +++ b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp @@ -312,7 +312,7 @@ void QDeclarativeAnimatedImage::playingStatusChanged() void QDeclarativeAnimatedImage::componentComplete() { Q_D(QDeclarativeAnimatedImage); - QDeclarativeImage::componentComplete(); + QDeclarativeItem::componentComplete(); // NOT QDeclarativeImage if (!d->reply) { setCurrentFrame(d->preset_currentframe); d->preset_currentframe = 0; |