| 93 | } |
| 94 | |
| 95 | void EFIBootEditorCLI::showError(const QString &message, const QString &details) |
| 96 | { |
| 97 | QTextStream ts{stderr}; |
| 98 | ts << tr("ERROR: %0! %1").arg(message, details) << Qt::endl; |
| 99 | failed = true; |
| 100 | } |
| 101 | |
| 102 | void EFIBootEditorCLI::showProgress(size_t step, size_t total, const QString &details) const |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected