| 2623 | } |
| 2624 | |
| 2625 | auto BootEntry::fromError(const QString &error) -> BootEntry |
| 2626 | { |
| 2627 | BootEntry value{}; |
| 2628 | value.is_error = true; |
| 2629 | value.description = "Error"; |
| 2630 | value.error = error; |
| 2631 | return value; |
| 2632 | } |
| 2633 | |
| 2634 | auto BootEntry::toEFIBootLoadOption() const -> EFIBoot::Load_option |
| 2635 | { |
nothing calls this directly
no outgoing calls
no test coverage detected