Project/PropertiesDialog.py

changeset 1131
7781e396c903
parent 1112
8a7d1b9d18db
child 1509
c0b5e693b0eb
equal deleted inserted replaced
1130:3e9f0330f833 1131:7781e396c903
36 @param project reference to the project object 36 @param project reference to the project object
37 @param new flag indicating the generation of a new project 37 @param new flag indicating the generation of a new project
38 @param parent parent widget of this dialog (QWidget) 38 @param parent parent widget of this dialog (QWidget)
39 @param name name of this dialog (string) 39 @param name name of this dialog (string)
40 """ 40 """
41 QDialog.__init__(self, parent) 41 super().__init__(parent)
42 if name: 42 if name:
43 self.setObjectName(name) 43 self.setObjectName(name)
44 self.setupUi(self) 44 self.setupUi(self)
45 45
46 self.project = project 46 self.project = project

eric ide

mercurial