37 @param vcs reference to the vcs object |
37 @param vcs reference to the vcs object |
38 @param mode mode of the dialog (string; one of log, incoming, outgoing) |
38 @param mode mode of the dialog (string; one of log, incoming, outgoing) |
39 @param bundle name of a bundle file (string) |
39 @param bundle name of a bundle file (string) |
40 @param parent parent widget (QWidget) |
40 @param parent parent widget (QWidget) |
41 """ |
41 """ |
42 QWidget.__init__(self, parent) |
42 super().__init__(parent) |
43 self.setupUi(self) |
43 self.setupUi(self) |
44 |
44 |
45 self.buttonBox.button(QDialogButtonBox.Close).setDefault(True) |
45 self.buttonBox.button(QDialogButtonBox.Close).setDefault(True) |
46 |
46 |
47 self.process = QProcess() |
47 self.process = QProcess() |