summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-09-09 01:37:49 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-09-09 01:37:49 (GMT)
commita626641fafcf5f3a2e904cd0679f62ee70e19f4e (patch)
tree6f0f73bdfcebb2935baceea53047d41f6b32535d /demos/declarative/twitter
parent80bd5e0206314155e8542520b4ec2fc5d9416e0e (diff)
downloadQt-a626641fafcf5f3a2e904cd0679f62ee70e19f4e.zip
Qt-a626641fafcf5f3a2e904cd0679f62ee70e19f4e.tar.gz
Qt-a626641fafcf5f3a2e904cd0679f62ee70e19f4e.tar.bz2
Positioners now implictly have the height and width of the childrenRect
Also removed the now uneccesary height and width bindings from the twitter demo login screen.
Diffstat (limited to 'demos/declarative/twitter')
-rw-r--r--demos/declarative/twitter/content/AuthView.qml8
1 files changed, 3 insertions, 5 deletions
diff --git a/demos/declarative/twitter/content/AuthView.qml b/demos/declarative/twitter/content/AuthView.qml
index 7d0d865..febee94 100644
--- a/demos/declarative/twitter/content/AuthView.qml
+++ b/demos/declarative/twitter/content/AuthView.qml
@@ -5,10 +5,9 @@ import "../../flickr/mobile"
Item {
id: wrapper
Column {
- width: childrenRect.width; height:childrenRect.height; anchors.centerIn: parent
+ anchors.centerIn: parent
spacing: 20
Row{
- width: childrenRect.width; height:childrenRect.height;
spacing: 4
Text {
width: 100
@@ -39,7 +38,6 @@ Item {
}
}
Row{
- width: childrenRect.width; height:childrenRect.height;
spacing: 4
Text {
width: 100
@@ -65,8 +63,8 @@ Item {
}
}
Item{
- width: childrenRect.width; anchors.horizontalCenter: parent.horizontalCenter
- height: childrenRect.height
+ width: childrenRect.width; height:childrenRect.height;
+ anchors.horizontalCenter: parent.horizontalCenter
Button {
x: 10
width: 100