| 64 | } |
| 65 | |
| 66 | ExportDialog *CrlTreeView::exportDialog(const QModelIndexList &indexes) |
| 67 | { |
| 68 | return new ExportDialog(this, |
| 69 | tr("Revocation list export"), |
| 70 | tr("CRL ( *.pem *.der *.crl )") + ";;" + |
| 71 | tr("vCalendar entry ( *.ics )"), indexes, QPixmap(":revImg"), |
| 72 | pki_export::select(revocation, basemodel->exportFlags(indexes)), |
| 73 | "crlexport"); |
| 74 | } |
nothing calls this directly
no test coverage detected