summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/content/ImageDetails.qml
diff options
context:
space:
mode:
Diffstat (limited to 'demos/declarative/flickr/content/ImageDetails.qml')
-rw-r--r--demos/declarative/flickr/content/ImageDetails.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/flickr/content/ImageDetails.qml b/demos/declarative/flickr/content/ImageDetails.qml
index 09d8f03..bfa3e01 100644
--- a/demos/declarative/flickr/content/ImageDetails.qml
+++ b/demos/declarative/flickr/content/ImageDetails.qml
@@ -27,7 +27,7 @@ Flipable {
front: Item {
id: ContainerFront; anchors.fill: Container
- Rect {
+ Rectangle {
anchors.fill: parent
color: "black"; opacity: 0.4
border.color: "white"; border.width: 2
@@ -77,7 +77,7 @@ Flipable {
back: Item {
anchors.fill: Container
- Rect { anchors.fill: parent; color: "black"; opacity: 0.4; border.color: "white"; border.width: 2 }
+ Rectangle { anchors.fill: parent; color: "black"; opacity: 0.4; border.color: "white"; border.width: 2 }
Progress { anchors.centerIn: parent; width: 200; height: 18; progress: BigImage.progress; visible: BigImage.status!=1 }
Flickable {