summaryrefslogtreecommitdiffstats
path: root/src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml
diff options
context:
space:
mode:
authorTeemu Holappa <teemu.holappa@theqtcompany.com>2016-01-28 10:22:43 +0200
committerTeemu Holappa <teemu.holappa@theqtcompany.com>2016-02-08 08:04:36 +0000
commit3e8998a7d712275891905f9e75a8cd150de86877 (patch)
tree8f781d0c2926e35c345f63e3c096a02f07f30603 /src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml
parent272cdee776d315a4a265a82b7e539cdd9f41ac79 (diff)
Wifi support to the Network Settings Plugin.
All the network management is done now through the Connman backend. Removed separate wifi settings plugin. Change-Id: I7b6b7231f1c44727ce0591e11182d25bc43718ed Reviewed-by: Risto Avila <risto.avila@theqtcompany.com>
Diffstat (limited to 'src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml')
-rw-r--r--src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml b/src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml
index 72342e1..37c7871 100644
--- a/src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml
+++ b/src/qtdevicesettings/settingscomponents/imports/Settings/CustomCombobox.qml
@@ -144,7 +144,7 @@ Item {
DelegateModel {
id: comboboxModel
- delegate: comboboxDelete
+ delegate: comboboxDelegate
}
Repeater {
@@ -156,7 +156,7 @@ Item {
}
Component {
- id: comboboxDelete
+ id: comboboxDelegate
Item {
id: comboboxViewDelegate
property bool checked
@@ -168,6 +168,7 @@ Item {
sourceComponent: delegate
anchors.fill: parent
property var modelData: model
+ property string textRole: textRole
onLoaded : exgroup.bindCheckable(item)
}