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