Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py

changeset 5848
56388f41b1e6
parent 5624
cdd346d8858b
child 6048
82ad8ec9548c
equal deleted inserted replaced
5847:fd1262c3fa79 5848:56388f41b1e6
24 from E5Gui import E5MessageBox 24 from E5Gui import E5MessageBox
25 25
26 from .Ui_SvnStatusDialog import Ui_SvnStatusDialog 26 from .Ui_SvnStatusDialog import Ui_SvnStatusDialog
27 27
28 import Preferences 28 import Preferences
29 from Globals import strToQByteArray
29 30
30 31
31 class SvnStatusDialog(QWidget, Ui_SvnStatusDialog): 32 class SvnStatusDialog(QWidget, Ui_SvnStatusDialog):
32 """ 33 """
33 Class implementing a dialog to show the output of the svn status command 34 Class implementing a dialog to show the output of the svn status command
556 self.errors.ensureCursorVisible() 557 self.errors.ensureCursorVisible()
557 else: 558 else:
558 self.errors.insertPlainText(inputTxt) 559 self.errors.insertPlainText(inputTxt)
559 self.errors.ensureCursorVisible() 560 self.errors.ensureCursorVisible()
560 561
561 self.process.write(inputTxt) 562 self.process.write(strToQByteArray(inputTxt))
562 563
563 self.passwordCheckBox.setChecked(False) 564 self.passwordCheckBox.setChecked(False)
564 self.input.clear() 565 self.input.clear()
565 566
566 def on_input_returnPressed(self): 567 def on_input_returnPressed(self):

eric ide

mercurial