Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py

changeset 5848
56388f41b1e6
parent 5624
cdd346d8858b
child 6048
82ad8ec9548c
equal deleted inserted replaced
5847:fd1262c3fa79 5848:56388f41b1e6
25 25
26 from .Ui_SvnLogBrowserDialog import Ui_SvnLogBrowserDialog 26 from .Ui_SvnLogBrowserDialog import Ui_SvnLogBrowserDialog
27 27
28 import Preferences 28 import Preferences
29 import UI.PixmapCache 29 import UI.PixmapCache
30 from Globals import strToQByteArray
30 31
31 32
32 class SvnLogBrowserDialog(QWidget, Ui_SvnLogBrowserDialog): 33 class SvnLogBrowserDialog(QWidget, Ui_SvnLogBrowserDialog):
33 """ 34 """
34 Class implementing a dialog to browse the log history. 35 Class implementing a dialog to browse the log history.
743 else: 744 else:
744 self.errors.insertPlainText(inputTxt) 745 self.errors.insertPlainText(inputTxt)
745 self.errors.ensureCursorVisible() 746 self.errors.ensureCursorVisible()
746 self.errorGroup.show() 747 self.errorGroup.show()
747 748
748 self.process.write(inputTxt) 749 self.process.write(strToQByteArray(inputTxt))
749 750
750 self.passwordCheckBox.setChecked(False) 751 self.passwordCheckBox.setChecked(False)
751 self.input.clear() 752 self.input.clear()
752 753
753 def on_input_returnPressed(self): 754 def on_input_returnPressed(self):

eric ide

mercurial