22 def __init__(self, vcs, project, parent=None): |
22 def __init__(self, vcs, project, parent=None): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param vcs reference to the version control object |
26 @param vcs reference to the version control object |
|
27 @type Git |
27 @param project reference to the project object |
28 @param project reference to the project object |
28 @param parent parent widget (QWidget) |
29 @type Project |
|
30 @param parent parent widget |
|
31 @type QWidget |
29 """ |
32 """ |
30 super().__init__(parent) |
33 super().__init__(parent) |
31 self.setupUi(self) |
34 self.setupUi(self) |
32 |
35 |
33 msh = self.minimumSizeHint() |
36 msh = self.minimumSizeHint() |