summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview/sections.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/sections.qml
parent51555ed45f6397fa7cdfae771ee6275733bce615 (diff)
downloadQt-21e87b18698c50bcfe0800509563e71c79aae0bb.zip
Qt-21e87b18698c50bcfe0800509563e71c79aae0bb.tar.gz
Qt-21e87b18698c50bcfe0800509563e71c79aae0bb.tar.bz2
Renaming Rect -> Rectangle
Diffstat (limited to 'examples/declarative/listview/sections.qml')
-rw-r--r--examples/declarative/listview/sections.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/listview/sections.qml b/examples/declarative/listview/sections.qml
index 41cc2e6..1b51a43 100644
--- a/examples/declarative/listview/sections.qml
+++ b/examples/declarative/listview/sections.qml
@@ -1,7 +1,7 @@
import Qt 4.6
//! [0]
-Rect {
+Rectangle {
width: 200
height: 240
color: "white"
@@ -18,7 +18,7 @@ Rect {
width: 200
// My height is the combined height of the description and the section separator
height: Separator.height + Desc.height
- Rect {
+ Rectangle {
id: Separator
color: "lightsteelblue"
width: parent.width
@@ -50,7 +50,7 @@ Rect {
// by each ListView and placed behind the current item.
Component {
id: PetHighlight
- Rect {
+ Rectangle {
color: "#FFFF88"
}
}