| 454 | } |
| 455 | |
| 456 | void EFIBootEditor::showError(const QString &message, const QString &details) |
| 457 | { |
| 458 | hideProgressBar(); |
| 459 | error->setText(message); |
| 460 | error->setDetailedText(details); |
| 461 | error->show(); |
| 462 | } |
| 463 | |
| 464 | template <class Receiver, typename Slot> |
| 465 | void EFIBootEditor::showConfirmation(const QString &message, const QMessageBox::StandardButtons &buttons, const QMessageBox::StandardButton &confirmation_button, Receiver confirmation_context, Slot confirmation_slot) |
nothing calls this directly
no outgoing calls
no test coverage detected