33 Constructor |
33 Constructor |
34 |
34 |
35 @param vcs reference to the vcs object |
35 @param vcs reference to the vcs object |
36 @param parent parent widget (QWidget) |
36 @param parent parent widget (QWidget) |
37 """ |
37 """ |
38 QWidget.__init__(self, parent) |
38 super().__init__(parent) |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 |
40 |
41 self.buttonBox.button(QDialogButtonBox.Close).setDefault(True) |
41 self.buttonBox.button(QDialogButtonBox.Close).setDefault(True) |
42 |
42 |
43 self.process = QProcess() |
43 self.process = QProcess() |