summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2009-10-01 06:41:30 (GMT)
committerBea Lam <bea.lam@nokia.com>2009-10-01 06:41:30 (GMT)
commit27e89da6ec97020a7a664be5be0b474aba323712 (patch)
tree3fdd00586719ff4b97e9677c38eab23e6f56ad73 /examples
parent832c7895a0b9fcd798f4497c87742731e872247d (diff)
parent620b0e43d292b8f2af1c906a8634c42aa2cd6cba (diff)
downloadQt-27e89da6ec97020a7a664be5be0b474aba323712.zip
Qt-27e89da6ec97020a7a664be5be0b474aba323712.tar.gz
Qt-27e89da6ec97020a7a664be5be0b474aba323712.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/layouts/layouts.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/declarative/layouts/layouts.qml b/examples/declarative/layouts/layouts.qml
index 6e22d8b..b54a7f3 100644
--- a/examples/declarative/layouts/layouts.qml
+++ b/examples/declarative/layouts/layouts.qml
@@ -5,7 +5,8 @@ Item { id: resizable
GraphicsObjectContainer{
anchors.fill:parent
QGraphicsWidget{
- geometry:{ "0,0," + parent.width.toString() + "x" + parent.height.toString(); }
+ size.width:parent.width
+ size.height:parent.height
layout: QGraphicsLinearLayout{
LayoutItem{
minimumSize: "100x100"