| 207 | } |
| 208 | |
| 209 | void EFIBootEditor::switchBootEntryEditor(int index) |
| 210 | { |
| 211 | auto [name, list, model] = getBootEntryList(index); |
| 212 | Q_UNUSED(name) |
| 213 | ui->entry_form->setBootEntryListModel(model); |
| 214 | enableBootEntryEditor(list.currentIndex()); |
| 215 | ui->entries_actions->setDisabled(model.options & BootEntryListModel::Option::ReadOnly); |
| 216 | } |
| 217 | |
| 218 | void EFIBootEditor::save() |
| 219 | { |
nothing calls this directly
no test coverage detected