Sat, 29 Sep 2012 12:45:07 +0200
Fixed an issue with the web browser main window.
(grafted from 136eb25e4314d79418b6805aa16b066c7e3bd2c1)
# -*- coding: utf-8 -*- # Copyright (c) 2010 - 2012 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a dialog to show SSL certificate infos. """ from PyQt4.QtGui import QDialog from .Ui_SslInfoDialog import Ui_SslInfoDialog class SslInfoDialog(QDialog, Ui_SslInfoDialog): """ Class implementing a dialog to show SSL certificate infos. """ def __init__(self, certificate, parent=None): """ Constructor @param certificate reference to the SSL certificate (QSslCertificate) @param parent reference to the parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) self.sslWidget.showCertificate(certificate)