summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview/recipes.qml
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-08-19 06:34:44 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-08-19 08:15:20 (GMT)
commit21e87b18698c50bcfe0800509563e71c79aae0bb (patch)
tree4567cb8a5bd3127fe98d7ce5a5042550bca48b7b /examples/declarative/listview/recipes.qml
parent51555ed45f6397fa7cdfae771ee6275733bce615 (diff)
downloadQt-21e87b18698c50bcfe0800509563e71c79aae0bb.zip
Qt-21e87b18698c50bcfe0800509563e71c79aae0bb.tar.gz
Qt-21e87b18698c50bcfe0800509563e71c79aae0bb.tar.bz2
Renaming Rect -> Rectangle
Diffstat (limited to 'examples/declarative/listview/recipes.qml')
-rw-r--r--examples/declarative/listview/recipes.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/listview/recipes.qml b/examples/declarative/listview/recipes.qml
index b2c17af..34cdee5 100644
--- a/examples/declarative/listview/recipes.qml
+++ b/examples/declarative/listview/recipes.qml
@@ -2,7 +2,7 @@ import Qt 4.6
import "content"
// This example illustrates expanding a list item to show a more detailed view
-Rect {
+Rectangle {
id: page
width: 400; height: 240; color: "black"
resources: [
@@ -21,7 +21,7 @@ Rect {
property real detailsOpacity : 0
// A simple rounded rectangle for the background
- Rect {
+ Rectangle {
id: background
x: 1; y: 2; width: parent.width-2; height: parent.height-4
color: "#FEFFEE"; border.color: "#FFBE4F"; radius: 5