From a6fe62fcb4ee219cdf0ddea7936545785d896015 Mon Sep 17 00:00:00 2001 From: Maximilian Goldstein Date: Thu, 28 Nov 2019 10:43:48 +0100 Subject: examples/quick/animation/layouts: Avoid unqualified access Change-Id: I75f67b54d75840c215c2dfe592ff95c5cb962ff2 Reviewed-by: Ulf Hermann --- examples/quick/layouts/layouts.qml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/quick/layouts/layouts.qml b/examples/quick/layouts/layouts.qml index 48299f36aa..e56fecade9 100644 --- a/examples/quick/layouts/layouts.qml +++ b/examples/quick/layouts/layouts.qml @@ -53,6 +53,8 @@ import QtQuick.Controls 1.2 import QtQuick.Layouts 1.3 ApplicationWindow { + id: appWindow + visible: true title: "Basic layouts" property int margin: 11 @@ -64,7 +66,7 @@ ApplicationWindow { ColumnLayout { id: mainLayout anchors.fill: parent - anchors.margins: margin + anchors.margins: appWindow.margin GroupBox { id: rowBox title: "Row layout" @@ -135,8 +137,13 @@ ApplicationWindow { id: stackRepeater model: 5 Rectangle { - color: Qt.hsla((0.5 + index)/stackRepeater.count, 0.3, 0.7, 1) - Button { anchors.centerIn: parent; text: "Page " + (index + 1); onClicked: { stackLayout.advance() } } + required property int index + color: Qt.hsla((0.5 + index) / stackRepeater.count, 0.3, 0.7, 1) + Button { + anchors.centerIn: parent + text: "Page " + (parent.index + 1) + onClicked: { stackLayout.advance() } + } } } } -- cgit v1.2.3