| 351 | } |
| 352 | |
| 353 | void EFIBootEditor::removeCurrentBootEntry() |
| 354 | { |
| 355 | auto [name, list, model] = currentBootEntryList(); |
| 356 | Q_UNUSED(name) |
| 357 | if(model.options & BootEntryListModel::Option::ReadOnly) |
| 358 | return; |
| 359 | |
| 360 | list.removeCurrentRow(); |
| 361 | } |
| 362 | |
| 363 | void EFIBootEditor::moveCurrentBootEntryUp() |
| 364 | { |
nothing calls this directly
no test coverage detected