diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-08-18 00:22:01 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-08-18 00:22:01 (GMT) |
commit | c9f4ad424949085209acda6cff07babbe8d29001 (patch) | |
tree | c146ff6b0c26cefd908411bb61fa76c2fb04ec00 /examples/declarative/xmldata/daringfireball.qml | |
parent | d272b9197c9cc40ac50a1cfa2703c648c962f0f2 (diff) | |
download | Qt-c9f4ad424949085209acda6cff07babbe8d29001.zip Qt-c9f4ad424949085209acda6cff07babbe8d29001.tar.gz Qt-c9f4ad424949085209acda6cff07babbe8d29001.tar.bz2 |
Change Item.contents to Item.childrenRect.
Diffstat (limited to 'examples/declarative/xmldata/daringfireball.qml')
-rw-r--r-- | examples/declarative/xmldata/daringfireball.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/xmldata/daringfireball.qml b/examples/declarative/xmldata/daringfireball.qml index 4fb12af..a93483e 100644 --- a/examples/declarative/xmldata/daringfireball.qml +++ b/examples/declarative/xmldata/daringfireball.qml @@ -26,7 +26,7 @@ Rect { Component { id: feedDelegate Item { - height: contents.height + 20 + height: childrenRect.height + 20 Text { x: 10 id: TitleText |