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