135 ) |
135 ) |
136 |
136 |
137 cert = QSslCertificate.fromData( |
137 cert = QSslCertificate.fromData( |
138 self.serversCertificatesTree.currentItem().data(0, self.CertRole) |
138 self.serversCertificatesTree.currentItem().data(0, self.CertRole) |
139 ) |
139 ) |
140 dlg = EricSslCertificatesInfoDialog(cert, self) |
140 dlg = EricSslCertificatesInfoDialog(cert, parent=self) |
141 dlg.exec() |
141 dlg.exec() |
142 |
142 |
143 @pyqtSlot() |
143 @pyqtSlot() |
144 def on_serversDeleteButton_clicked(self): |
144 def on_serversDeleteButton_clicked(self): |
145 """ |
145 """ |
352 ) |
352 ) |
353 |
353 |
354 cert = QSslCertificate.fromData( |
354 cert = QSslCertificate.fromData( |
355 self.caCertificatesTree.currentItem().data(0, self.CertRole) |
355 self.caCertificatesTree.currentItem().data(0, self.CertRole) |
356 ) |
356 ) |
357 dlg = EricSslCertificatesInfoDialog(cert, self) |
357 dlg = EricSslCertificatesInfoDialog(cert, parent=self) |
358 dlg.exec() |
358 dlg.exec() |
359 |
359 |
360 @pyqtSlot() |
360 @pyqtSlot() |
361 def on_caDeleteButton_clicked(self): |
361 def on_caDeleteButton_clicked(self): |
362 """ |
362 """ |