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