diff options
author | Bea Lam <bea.lam@nokia.com> | 2011-01-19 05:44:28 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2011-01-19 05:44:28 (GMT) |
commit | eaacbac00bbd65cc6b12de9db4556dd2bdd18a5c (patch) | |
tree | 4b9fcf2a8ae9f662baaa86532da83f02dd3808ae | |
parent | 5ddfe819e93462eff396c24d10c0446c4cd9b0ac (diff) | |
download | Qt-eaacbac00bbd65cc6b12de9db4556dd2bdd18a5c.zip Qt-eaacbac00bbd65cc6b12de9db4556dd2bdd18a5c.tar.gz Qt-eaacbac00bbd65cc6b12de9db4556dd2bdd18a5c.tar.bz2 |
Update demos following renaming of Image::cached
-rw-r--r-- | demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml b/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml index e0c1363..bfc8756 100644 --- a/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml +++ b/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml @@ -88,11 +88,11 @@ Package { } BusyIndicator { anchors.centerIn: parent; on: originalImage.status != Image.Ready } Image { - id: originalImage; smooth: true; source: "http://" + Script.getImagePath(content); cached: false + id: originalImage; smooth: true; source: "http://" + Script.getImagePath(content); cache: false fillMode: Image.PreserveAspectFit; width: photoWrapper.width; height: photoWrapper.height } Image { - id: hqImage; smooth: true; source: ""; visible: false; cached: false + id: hqImage; smooth: true; source: ""; visible: false; cache: false fillMode: Image.PreserveAspectFit; width: photoWrapper.width; height: photoWrapper.height } Binding { |