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