35 @param project reference to the project object |
35 @param project reference to the project object |
36 @param new flag indicating the generation of a new project |
36 @param new flag indicating the generation of a new project |
37 @param parent parent widget of this dialog (QWidget) |
37 @param parent parent widget of this dialog (QWidget) |
38 @param name name of this dialog (string) |
38 @param name name of this dialog (string) |
39 """ |
39 """ |
40 super(PropertiesDialog, self).__init__(parent) |
40 super().__init__(parent) |
41 if name: |
41 if name: |
42 self.setObjectName(name) |
42 self.setObjectName(name) |
43 self.setupUi(self) |
43 self.setupUi(self) |
44 |
44 |
45 self.dirPicker.setMode(E5PathPickerModes.DirectoryMode) |
45 self.dirPicker.setMode(E5PathPickerModes.DirectoryMode) |