eric6/Project/PropertiesDialog.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
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)

eric ide

mercurial