summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensor_explorer/PropertyList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sensors/sensor_explorer/PropertyList.qml')
-rw-r--r--examples/sensors/sensor_explorer/PropertyList.qml3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/sensors/sensor_explorer/PropertyList.qml b/examples/sensors/sensor_explorer/PropertyList.qml
index 846c4cca..b180d620 100644
--- a/examples/sensors/sensor_explorer/PropertyList.qml
+++ b/examples/sensors/sensor_explorer/PropertyList.qml
@@ -48,13 +48,11 @@ Rectangle {
color: "transparent"
property PropertyInfo selectedItem: null;
- signal selectedItemChanged();
property alias listmodel: itemList.model
onListmodelChanged: {
itemList.currentIndex = -1;
selectedItem = null;
- selectedItemChanged();
}
Rectangle {
@@ -121,7 +119,6 @@ Rectangle {
onClicked: {
itemList.currentIndex = index;
selectedItem = model.modelData;
- selectedItemChanged();
}
}
}