25 Constructor |
25 Constructor |
26 |
26 |
27 @param certificate reference to the SSL certificate (QSslCertificate) |
27 @param certificate reference to the SSL certificate (QSslCertificate) |
28 @param parent reference to the parent widget (QWidget) |
28 @param parent reference to the parent widget (QWidget) |
29 """ |
29 """ |
30 QDialog.__init__(self, parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.subjectCommonNameLabel.setText(self.__certificateString( |
33 self.subjectCommonNameLabel.setText(self.__certificateString( |
34 certificate.subjectInfo(QSslCertificate.CommonName))) |
34 certificate.subjectInfo(QSslCertificate.CommonName))) |
35 self.subjectOrganizationLabel.setText(self.__certificateString( |
35 self.subjectOrganizationLabel.setText(self.__certificateString( |