| 134 | |
| 135 | |
| 136 | void ParserBase::showErrorDialog(const QString &errMsg) |
| 137 | { |
| 138 | Q_ASSERT(Dialogs::instance() != nullptr); |
| 139 | QString msg = tr("Parse failed!\nURL: %1\n\nPlease try updating plugins.").arg(m_url.toString()); |
| 140 | Dialogs::instance()->messageDialog(tr("Error"), msg); |
| 141 | qDebug("%s", errMsg.toUtf8().constData()); |
| 142 | } |
nothing calls this directly
no test coverage detected