| 8 | #include <QSslCertificate> |
| 9 | |
| 10 | SecurityInfoDialog::SecurityInfoDialog(CookieJar *cookieJar, HistoryManager *historyManager) : |
| 11 | QWidget(nullptr), |
| 12 | ui(new Ui::SecurityInfoDialog), |
| 13 | m_certViewer(new CertificateViewer), |
| 14 | m_cookieJar(cookieJar), |
| 15 | m_historyManager(historyManager) |
| 16 | { |
| 17 | ui->setupUi(this); |
| 18 | |
| 19 | // Connect simple button signals to dialog display slots |
| 20 | connect(ui->pushButtonCertificate, &QPushButton::clicked, m_certViewer, &CertificateViewer::show); |
| 21 | } |
| 22 | |
| 23 | SecurityInfoDialog::~SecurityInfoDialog() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected