| 72 | } |
| 73 | |
| 74 | void InternalErrorsDialog::addError(InternalError &&newError) |
| 75 | { |
| 76 | s_internalErrors.emplace_back(newError); |
| 77 | if (s_instance) { |
| 78 | s_instance->internalAddError(s_internalErrors.back()); |
| 79 | s_instance->updateStatusLabel(); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void InternalErrorsDialog::addError(const QString &message, const QUrl &url, const QByteArray &response) |
| 84 | { |
nothing calls this directly
no test coverage detected