summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/GroupBox.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-03-05 00:35:54 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-03-05 00:35:54 (GMT)
commit8708350f4b00507348fa59f313bcfa554a3d6f79 (patch)
tree6c66a58fdf461bd2e24b3ec4035dd6b740a08398 /doc/src/snippets/declarative/GroupBox.qml
parent38ff49e632da2bd61ac5fb59f57f62208c2687fd (diff)
downloadQt-8708350f4b00507348fa59f313bcfa554a3d6f79.zip
Qt-8708350f4b00507348fa59f313bcfa554a3d6f79.tar.gz
Qt-8708350f4b00507348fa59f313bcfa554a3d6f79.tar.bz2
Update QML documentation snippets to latest syntax.
Diffstat (limited to 'doc/src/snippets/declarative/GroupBox.qml')
-rw-r--r--doc/src/snippets/declarative/GroupBox.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/doc/src/snippets/declarative/GroupBox.qml b/doc/src/snippets/declarative/GroupBox.qml
deleted file mode 100644
index 6c5431e..0000000
--- a/doc/src/snippets/declarative/GroupBox.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import Qt 4.6
-
-ContentWrapper {
- id: container; width: parent.width; height: contents.height
- children: [
- Rectangle {
- width: parent.width; height: contents.height
- color: "white"; pen.width: 2; pen.color: "#adaeb0"; radius: 10
- Column {
- id: layout; width: parent.width; margin: 5; spacing: 2
- Content { }
- }
- }
- ]
-}