summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2022-09-21 17:12:33 +0200
committerTim Jenssen <tim.jenssen@qt.io>2022-09-21 16:44:39 +0000
commitd90456d469c417584e085c75a9930a2d4813b2a8 (patch)
tree46bc4d69e0d9a50a52753338686fa2b0e55fe99d
parent39e3ae033896d35119365f7a676eacd251817bba (diff)
downloadqt-creator-d90456d469c417584e085c75a9930a2d4813b2a8.tar.gz
qmldesigner: remove old splashscreen ui code
It has visible: false so it is not in use, but it produced some warnings. Change-Id: I2fc9c5d1c06b14d0e9104f9e1507baeabdc5f4bc Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
index 73c4eded2b..d0d0dcfe92 100644
--- a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
+++ b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
@@ -255,56 +255,6 @@ Rectangle {
}
Row {
- y: 690
- visible: false
- anchors.horizontalCenter: parent.horizontalCenter
- spacing: 20
- layoutDirection: Qt.LeftToRight
-
- CheckBox {
- visible: true
- id: usageStatisticCheckBox
- text: qsTr("Send Usage Statistics")
- checked: usageStatisticModel.usageStatisticEnabled
- padding: 0
- spacing: 12
-
- onCheckedChanged: usageStatisticModel.setTelemetryEnabled(
- usageStatisticCheckBox.checked)
-
- contentItem: Text {
- text: usageStatisticCheckBox.text
- color: "#ffffff"
- leftPadding: usageStatisticCheckBox.indicator.width + usageStatisticCheckBox.spacing
- font.pixelSize: 12
- }
- }
-
- CheckBox {
- visible: true
- id: crashReportCheckBox
- text: qsTr("Send Crash Reports")
- spacing: 12
- checked: usageStatisticModel.crashReporterEnabled
-
- onCheckedChanged: {
- usageStatisticModel.setCrashReporterEnabled(
- crashReportCheckBox.checked)
- welcome_splash.onPluginInitialized(true,
- crashReportCheckBox.checked)
- }
-
- contentItem: Text {
- color: "#ffffff"
- text: crashReportCheckBox.text
- leftPadding: crashReportCheckBox.indicator.width + crashReportCheckBox.spacing
- font.pixelSize: 12
- }
- padding: 0
- }
- }
-
- Row {
id: designStudioVersion
anchors.top: logo.bottom
anchors.topMargin: 5