32 (string) |
32 (string) |
33 @param pysvnClient reference to the pysvn client object (pysvn.Client) |
33 @param pysvnClient reference to the pysvn client object (pysvn.Client) |
34 @keyparam parent parent widget (QWidget) |
34 @keyparam parent parent widget (QWidget) |
35 @keyparam log optional log message (string) |
35 @keyparam log optional log message (string) |
36 """ |
36 """ |
37 QDialog.__init__(self, parent) |
37 super().__init__(parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 SvnDialogMixin.__init__(self, log) |
39 SvnDialogMixin.__init__(self, log) |
40 |
40 |
41 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |
41 self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False) |
42 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) |
42 self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True) |