| 96 | } |
| 97 | |
| 98 | RevocationList::RevocationList(QWidget *w) |
| 99 | : QDialog(w && w->isVisible() ? w : nullptr) |
| 100 | { |
| 101 | QPushButton *genCrl; |
| 102 | setupUi(this); |
| 103 | setWindowTitle(XCA_TITLE); |
| 104 | image->setPixmap(QPixmap(":revImg")); |
| 105 | mainwin->helpdlg->register_ctxhelp_button(this, "crlmanage"); |
| 106 | |
| 107 | genCrl = buttonBox->addButton(tr("Generate CRL"), |
| 108 | QDialogButtonBox::ActionRole); |
| 109 | |
| 110 | connect(genCrl, SIGNAL(clicked()), this, SLOT(gencrl())); |
| 111 | } |
| 112 | |
| 113 | void RevocationList::gencrl() |
| 114 | { |
nothing calls this directly
no test coverage detected