34 Constructor |
36 Constructor |
35 |
37 |
36 @param vcs reference to the vcs object |
38 @param vcs reference to the vcs object |
37 @param parent parent widget (QWidget) |
39 @param parent parent widget (QWidget) |
38 """ |
40 """ |
39 super().__init__(parent) |
41 super(SvnLogDialog, self).__init__(parent) |
40 self.setupUi(self) |
42 self.setupUi(self) |
41 SvnDialogMixin.__init__(self) |
43 SvnDialogMixin.__init__(self) |
42 |
44 |
43 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |
45 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |
44 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) |
46 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) |