summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/content.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-05-05 05:27:57 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-05-05 05:27:57 (GMT)
commit066f18d1830c5820041c3b267db404be8bc68a32 (patch)
treeffc588a4e4a5fc8e97f1726761d2e4ea447ef302 /doc/src/snippets/declarative/content.qml
parentc376633cba5c79ed1d842d9c6b7b68e31c646959 (diff)
downloadQt-066f18d1830c5820041c3b267db404be8bc68a32.zip
Qt-066f18d1830c5820041c3b267db404be8bc68a32.tar.gz
Qt-066f18d1830c5820041c3b267db404be8bc68a32.tar.bz2
Content/ContentWrapper documentation.
Diffstat (limited to 'doc/src/snippets/declarative/content.qml')
-rw-r--r--doc/src/snippets/declarative/content.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/snippets/declarative/content.qml b/doc/src/snippets/declarative/content.qml
index be04c6e..6f9e0d8 100644
--- a/doc/src/snippets/declarative/content.qml
+++ b/doc/src/snippets/declarative/content.qml
@@ -1,6 +1,7 @@
-GroupBox {
- content: [
+Rect {
+ width: 200; height: 100; color: "lightgray"
+ GroupBox {
Text { text: "First Item" }
Text { text: "Second Item" }
- ]
+ }
}