26 |
26 |
27 @param project reference to the project object |
27 @param project reference to the project object |
28 @param parent parent widget of this dialog (QWidget) |
28 @param parent parent widget of this dialog (QWidget) |
29 @param name name of this dialog (string) |
29 @param name name of this dialog (string) |
30 """ |
30 """ |
31 QDialog.__init__(self, parent) |
31 super().__init__(parent) |
32 if name: |
32 if name: |
33 self.setObjectName(name) |
33 self.setObjectName(name) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.project = project |
36 self.project = project |