eric6/WebBrowser/Network/ProtocolHandlerManagerDialog.py

branch
maintenance
changeset 8273
698ae46f40a4
parent 8218
7c09585bd960
equal deleted inserted replaced
8190:fb0ef164f536 8273:698ae46f40a4
24 @param manager reference to the protocol handlers manager object 24 @param manager reference to the protocol handlers manager object
25 @type ProtocolHandlerManager 25 @type ProtocolHandlerManager
26 @param parent reference to the parent widget 26 @param parent reference to the parent widget
27 @type QWidget 27 @type QWidget
28 """ 28 """
29 super(ProtocolHandlerManagerDialog, self).__init__(parent) 29 super().__init__(parent)
30 self.setupUi(self) 30 self.setupUi(self)
31 self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose) 31 self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose)
32 32
33 self.__manager = manager 33 self.__manager = manager
34 handlers = self.__manager.protocolHandlers() 34 handlers = self.__manager.protocolHandlers()

eric ide

mercurial