mirror of https://github.com/qt/qtdatavis3d.git
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:
parent
8a90ebacb9
commit
8461cda03d
|
@ -324,6 +324,6 @@ Item {
|
|||
width: parent.width / 3
|
||||
text: "Quit"
|
||||
anchors.left: orthoToggle.right
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -189,7 +189,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -238,7 +238,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.minimumWidth: parent.width / 3
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -234,7 +234,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
|
||||
Button {
|
||||
|
|
|
@ -315,7 +315,7 @@ Item {
|
|||
|
||||
text: "Quit"
|
||||
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -238,7 +238,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -267,6 +267,6 @@ Rectangle {
|
|||
width: parent.width / 3
|
||||
text: "Quit"
|
||||
anchors.left: cameraToggle.right
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,7 +120,7 @@ Rectangle {
|
|||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
text: "Quit"
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
|
||||
Button {
|
||||
|
|
|
@ -154,7 +154,7 @@ Item {
|
|||
|
||||
text: "Quit"
|
||||
|
||||
onClicked: Qt.quit(0);
|
||||
onClicked: Qt.quit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue