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() |