summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/GroupBox.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-03-05 04:01:03 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-03-05 04:01:03 (GMT)
commitcb486319b599eccbc40166d0b3d057d11d92759c (patch)
treecfa2d0f3bb88e266a96f5a8218c3ac70a823cf08 /doc/src/snippets/declarative/GroupBox.qml
parent09e39c9c86e8ed346aff348b28c512710862e70e (diff)
parent0c558e05f880cb51078b2d5e5281227352c1de3f (diff)
downloadQt-cb486319b599eccbc40166d0b3d057d11d92759c.zip
Qt-cb486319b599eccbc40166d0b3d057d11d92759c.tar.gz
Qt-cb486319b599eccbc40166d0b3d057d11d92759c.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
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 { }
- }
- }
- ]
-}