22 from E5Gui import E5MessageBox |
22 from E5Gui import E5MessageBox |
23 |
23 |
24 from .Ui_SvnChangeListsDialog import Ui_SvnChangeListsDialog |
24 from .Ui_SvnChangeListsDialog import Ui_SvnChangeListsDialog |
25 |
25 |
26 import Preferences |
26 import Preferences |
|
27 from Globals import strToQByteArray |
27 |
28 |
28 |
29 |
29 class SvnChangeListsDialog(QDialog, Ui_SvnChangeListsDialog): |
30 class SvnChangeListsDialog(QDialog, Ui_SvnChangeListsDialog): |
30 """ |
31 """ |
31 Class implementing a dialog to browse the change lists. |
32 Class implementing a dialog to browse the change lists. |
247 self.errors.ensureCursorVisible() |
248 self.errors.ensureCursorVisible() |
248 else: |
249 else: |
249 self.errors.insertPlainText(inputTxt) |
250 self.errors.insertPlainText(inputTxt) |
250 self.errors.ensureCursorVisible() |
251 self.errors.ensureCursorVisible() |
251 |
252 |
252 self.process.write(inputTxt) |
253 self.process.write(strToQByteArray(inputTxt)) |
253 |
254 |
254 self.passwordCheckBox.setChecked(False) |
255 self.passwordCheckBox.setChecked(False) |
255 self.input.clear() |
256 self.input.clear() |
256 |
257 |
257 def on_input_returnPressed(self): |
258 def on_input_returnPressed(self): |