diff options
Diffstat (limited to 'examples/declarative/layouts/layouts.qml')
-rw-r--r-- | examples/declarative/layouts/layouts.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/layouts/layouts.qml b/examples/declarative/layouts/layouts.qml index 1f6b956..6e22d8b 100644 --- a/examples/declarative/layouts/layouts.qml +++ b/examples/declarative/layouts/layouts.qml @@ -11,13 +11,13 @@ Item { id: resizable minimumSize: "100x100" maximumSize: "300x300" preferredSize: "100x100" - Rect { color: "yellow"; anchors.fill: parent } + Rectangle { color: "yellow"; anchors.fill: parent } } LayoutItem{ minimumSize: "100x100" maximumSize: "400x400" preferredSize: "200x200" - Rect { color: "green"; anchors.fill: parent } + Rectangle { color: "green"; anchors.fill: parent } } } } |