PluginManager/PluginDetailsDialog.py

changeset 1131
7781e396c903
parent 945
8cd4d08fa9f6
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
23 Constructor 23 Constructor
24 24
25 @param details dictionary containing the info to be displayed 25 @param details dictionary containing the info to be displayed
26 @param parent parent of this dialog (QWidget) 26 @param parent parent of this dialog (QWidget)
27 """ 27 """
28 QDialog.__init__(self, parent) 28 super().__init__(parent)
29 self.setupUi(self) 29 self.setupUi(self)
30 30
31 self.__autoactivate = details["autoactivate"] 31 self.__autoactivate = details["autoactivate"]
32 self.__active = details["active"] 32 self.__active = details["active"]
33 33

eric ide

mercurial