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 |