summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-08-31 03:23:40 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-08-31 03:23:40 (GMT)
commit33b1332d1b8593f488cf5f926315a6df68eee7df (patch)
tree93e8337a555e343b281b62994b6848b4e564fbb4 /demos
parent3928cb20ecc63ed21cdb122388b200c9ab8e7cad (diff)
downloadQt-33b1332d1b8593f488cf5f926315a6df68eee7df.zip
Qt-33b1332d1b8593f488cf5f926315a6df68eee7df.tar.gz
Qt-33b1332d1b8593f488cf5f926315a6df68eee7df.tar.bz2
Revert "Add 'cached' property to Image."
This will have to go in 4.8. This reverts commit 3928cb20ecc63ed21cdb122388b200c9ab8e7cad.
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml b/demos/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml
index d1f0755..dadb409 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)
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
fillMode: Image.PreserveAspectFit; width: photoWrapper.width; height: photoWrapper.height
}
Binding {