34 |
34 |
35 @param project reference to the project object (Project.Project) |
35 @param project reference to the project object (Project.Project) |
36 @param parms parameters to set in the dialog |
36 @param parms parameters to set in the dialog |
37 @param parent parent widget of this dialog |
37 @param parent parent widget of this dialog |
38 """ |
38 """ |
39 QDialog.__init__(self, parent) |
39 super().__init__(parent) |
40 self.setupUi(self) |
40 self.setupUi(self) |
41 |
41 |
42 self.__okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
42 self.__okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
43 |
43 |
44 self.__initializeDefaults() |
44 self.__initializeDefaults() |