src/eric7/MultiProject/PropertiesDialog.py

branch
eric7
changeset 10410
da82156f44e9
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10409:8d888f38bf89 10410:da82156f44e9
20 def __init__(self, multiProject, new=True, parent=None): 20 def __init__(self, multiProject, new=True, parent=None):
21 """ 21 """
22 Constructor 22 Constructor
23 23
24 @param multiProject reference to the multi project object 24 @param multiProject reference to the multi project object
25 @type MultiProject
25 @param new flag indicating the generation of a new multi project 26 @param new flag indicating the generation of a new multi project
26 @param parent parent widget of this dialog (QWidget) 27 (defaults to True)
28 @type bool (optional)
29 @param parent reference to the parent widget (defaults to None)
30 @type QWidget (optional)
27 """ 31 """
28 super().__init__(parent) 32 super().__init__(parent)
29 self.setupUi(self) 33 self.setupUi(self)
30 34
31 self.multiProject = multiProject 35 self.multiProject = multiProject

eric ide

mercurial