eric6/WebBrowser/Network/ProtocolHandlerManagerDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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