summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensor_explorer/sensor_explorer.qml
diff options
context:
space:
mode:
authorJuha Vuolle <juha.vuolle@insta.fi>2021-04-27 14:20:52 +0300
committerJuha Vuolle <juha.vuolle@insta.fi>2021-04-27 20:18:56 +0300
commitcc40b86d2b5b9943fa6ee011faa3cbcf9248e660 (patch)
treed45aabedb80256fa66fdc9a313507d26f088f585 /examples/sensors/sensor_explorer/sensor_explorer.qml
parent254760acc0be8a193282cc8b7dbc629ad54eb33c (diff)
Enable sensor_explorer example standalone build
This commit enables building of the example outside of the source tree. Currently the example does not work with Qt 6.2 but requires more "content work" that shall be done under QTBUG-92514 Also removed the Widgets related code as the example is a Quick application. Task-number: QTBUG-92502 Change-Id: I016cf6697dc4603c77437c7f20601937b1fca293 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'examples/sensors/sensor_explorer/sensor_explorer.qml')
-rw-r--r--examples/sensors/sensor_explorer/sensor_explorer.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/sensors/sensor_explorer/sensor_explorer.qml b/examples/sensors/sensor_explorer/sensor_explorer.qml
index 24e22133..c8b9e538 100644
--- a/examples/sensors/sensor_explorer/sensor_explorer.qml
+++ b/examples/sensors/sensor_explorer/sensor_explorer.qml
@@ -74,11 +74,14 @@ Window {
anchors.margins: 8
spacing: 8
+ /* TODO Qt 6.2 FIX TableView and TableViewColumn
+
GroupBox {
title: qsTr("Available Sensors")
width: parent.width
height: window.height * 0.4
+
TableView {
id: sensorList
anchors.fill: parent
@@ -220,5 +223,6 @@ Window {
}
}
}
+ */
}
}