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