src/eric7/WebBrowser/Network/SslErrorExceptionsDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9576
be9f8e7e42e0
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
5 5
6 """ 6 """
7 Module implementing a dialog to edit the SSL error exceptions. 7 Module implementing a dialog to edit the SSL error exceptions.
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot, Qt, QPoint 10 from PyQt6.QtCore import QPoint, Qt, pyqtSlot
11 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QMenu
12 from PyQt6.QtWebEngineCore import QWebEngineCertificateError 11 from PyQt6.QtWebEngineCore import QWebEngineCertificateError
12 from PyQt6.QtWidgets import QDialog, QMenu, QTreeWidgetItem
13 13
14 from .Ui_SslErrorExceptionsDialog import Ui_SslErrorExceptionsDialog 14 from .Ui_SslErrorExceptionsDialog import Ui_SslErrorExceptionsDialog
15 15
16 16
17 class SslErrorExceptionsDialog(QDialog, Ui_SslErrorExceptionsDialog): 17 class SslErrorExceptionsDialog(QDialog, Ui_SslErrorExceptionsDialog):

eric ide

mercurial