| 261 | } |
| 262 | |
| 263 | ExportDialog *CertTreeView::exportDialog(const QModelIndexList &indexes) |
| 264 | { |
| 265 | return new ExportDialog(this, |
| 266 | tr("Certificate export"), |
| 267 | tr("X509 Certificates ( *.pem *.cer *.crt *.p12 *.pfx *.p7b )") + ";;"+ |
| 268 | tr("vCalendar entry ( *.ics )") + ";;" + |
| 269 | tr("OpenVPN file ( *.ovpn )") + ";;" + |
| 270 | tr("OpenVPN tls-auth key ( *.key )"), indexes, QPixmap(":certImg"), |
| 271 | pki_export::select(x509, basemodel->exportFlags(indexes)), |
| 272 | "certexport"); |
| 273 | } |
| 274 | |
| 275 | void CertTreeView::toggleHideExpired(bool hide) |
| 276 | { |
nothing calls this directly
no test coverage detected