diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-08-11 09:29:07 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-08-11 09:29:07 (GMT) |
commit | 62968f33452016b31020e524fa6ba6d2cefd0278 (patch) | |
tree | 5590b191ab33f4a8ea97f4556fdaa7b63819bba0 /tests/auto/declarative/qdeclarativeitem | |
parent | 0d4d065cc9757159c5b6fa817892f5707bc1ecae (diff) | |
download | Qt-62968f33452016b31020e524fa6ba6d2cefd0278.zip Qt-62968f33452016b31020e524fa6ba6d2cefd0278.tar.gz Qt-62968f33452016b31020e524fa6ba6d2cefd0278.tar.bz2 |
qdoc: Added list of all members (including inherited) page to QML elements.
Diffstat (limited to 'tests/auto/declarative/qdeclarativeitem')
-rw-r--r-- | tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml b/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml index f19ab4f..54b5b68 100644 --- a/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml +++ b/tests/auto/declarative/qdeclarativeitem/data/childrenRectBug3.qml @@ -1,15 +1,15 @@ -import Qt 4.7
-
-Rectangle {
- width: 300
- height: 300
-
- Rectangle {
- height: childrenRect.height
-
- Repeater {
- model: 1
- Rectangle { }
- }
- }
-}
+import Qt 4.7 + +Rectangle { + width: 300 + height: 300 + + Rectangle { + height: childrenRect.height + + Repeater { + model: 1 + Rectangle { } + } + } +} |