E5Network/E5SslInfoDialog.py

changeset 2432
b1a2f9054b28
parent 2430
fd7fa26076d2
child 2433
f580320cd0aa
diff -r fd7fa26076d2 -r b1a2f9054b28 E5Network/E5SslInfoDialog.py
--- a/E5Network/E5SslInfoDialog.py	Sat Feb 23 14:25:36 2013 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de>
-#
-
-"""
-Module implementing a dialog to show SSL certificate infos.
-"""
-
-from PyQt4.QtGui import QDialog
-
-from .Ui_E5SslInfoDialog import Ui_E5SslInfoDialog
-
-
-class E5SslInfoDialog(QDialog, Ui_E5SslInfoDialog):
-    """
-    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)

eric ide

mercurial