| 381 | } |
| 382 | |
| 383 | void EFIBootEditor::insertBootEntry() |
| 384 | { |
| 385 | auto [name, list, model] = currentBootEntryList(); |
| 386 | Q_UNUSED(name) |
| 387 | if(model.options & BootEntryListModel::Option::ReadOnly) |
| 388 | return; |
| 389 | |
| 390 | list.insertRow(); |
| 391 | } |
| 392 | |
| 393 | void EFIBootEditor::duplicateBootEntry() |
| 394 | { |