28 |
28 |
29 @param vcs reference to the vcs object |
29 @param vcs reference to the vcs object |
30 @param patchesList list of patches (list of strings) |
30 @param patchesList list of patches (list of strings) |
31 @param parent reference to the parent widget (QWidget) |
31 @param parent reference to the parent widget (QWidget) |
32 """ |
32 """ |
33 QDialog.__init__(self, parent) |
33 super().__init__(parent) |
34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.process = QProcess() |
36 self.process = QProcess() |
37 self.vcs = vcs |
37 self.vcs = vcs |
38 |
38 |