33 |
33 |
34 @param project reference to the project object |
34 @param project reference to the project object |
35 @param new flag indicating the generation of a new project |
35 @param new flag indicating the generation of a new project |
36 @param parent parent widget of this dialog (QWidget) |
36 @param parent parent widget of this dialog (QWidget) |
37 """ |
37 """ |
38 QDialog.__init__(self, parent) |
38 super().__init__(parent) |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 |
40 |
41 self.project = project |
41 self.project = project |
42 self.parent = parent |
42 self.parent = parent |
43 |
43 |