1 2 3 4 5 6 7 8 | ListItems.Standard {
control: CheckBox {
id: mppeStatefulCheckbox
Binding {target: mppeStatefulCheckbox; property: "checked"; value: connection.mppeStateful}
onCheckedChanged: connection.mppeStateful = checked
}
text: i18n.tr("Allow stateful encryption")
}
|