Fix quit buttons in qml examples

Task-number: QTBUG-90664
Pick-to: 6.1
Change-Id: I4b60dafeb0599e988b422a4764bac2e91b22d2ea
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
This commit is contained in:
Tuomo Pelkonen 2021-02-10 16:06:12 +02:00 committed by Tomi Korpipää
parent 8a90ebacb9
commit 8461cda03d
10 changed files with 10 additions and 10 deletions

View File

@ -324,6 +324,6 @@ Item {
width: parent.width / 3
text: "Quit"
anchors.left: orthoToggle.right
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}

View File

@ -189,7 +189,7 @@ Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}
}

View File

@ -238,7 +238,7 @@ Rectangle {
Layout.fillHeight: true
Layout.minimumWidth: parent.width / 3
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}
}

View File

@ -234,7 +234,7 @@ Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}

View File

@ -110,7 +110,7 @@ Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
Button {

View File

@ -315,7 +315,7 @@ Item {
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}
}

View File

@ -238,7 +238,7 @@ Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}
}

View File

@ -267,6 +267,6 @@ Rectangle {
width: parent.width / 3
text: "Quit"
anchors.left: cameraToggle.right
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}

View File

@ -120,7 +120,7 @@ Rectangle {
Layout.fillHeight: true
Layout.fillWidth: true
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
Button {

View File

@ -154,7 +154,7 @@ Item {
text: "Quit"
onClicked: Qt.quit(0);
onClicked: Qt.quit();
}
}
}