| 79 | } |
| 80 | |
| 81 | void xcaWarningGui::warningv3(const QString &msg, const extList &el) |
| 82 | { |
| 83 | QString etext = QString("<h3>") + msg + |
| 84 | QString("</h3><hr>") + el.getHtml("<br>"); |
| 85 | |
| 86 | QTextEdit *textbox = new QTextEdit(etext); |
| 87 | XcaDialog *d = new XcaDialog(NULL, x509, textbox, |
| 88 | QString(), QString()); |
| 89 | d->aboutDialog(QPixmap(":certImg")); |
| 90 | d->exec(); |
| 91 | delete d; |
| 92 | } |
nothing calls this directly
no test coverage detected