eric6/QScintilla/Shell.py

branch
maintenance
changeset 7824
096b3ebc1409
parent 7737
5371a22cf2aa
parent 7759
51aa6c6b66f7
child 7924
8a96736d465e
equal deleted inserted replaced
7738:10554f5fac78 7824:096b3ebc1409
778 """ 778 """
779 Public slot to show the shell history dialog. 779 Public slot to show the shell history dialog.
780 """ 780 """
781 from .ShellHistoryDialog import ShellHistoryDialog 781 from .ShellHistoryDialog import ShellHistoryDialog
782 dlg = ShellHistoryDialog(self.__history, self.vm, self) 782 dlg = ShellHistoryDialog(self.__history, self.vm, self)
783 if dlg.exec_() == QDialog.Accepted: 783 if dlg.exec() == QDialog.Accepted:
784 self.__historyLists[self.clientType], idx = dlg.getHistory() 784 self.__historyLists[self.clientType], idx = dlg.getHistory()
785 self.__history = self.__historyLists[self.clientType] 785 self.__history = self.__historyLists[self.clientType]
786 self.__setHistoryIndex(index=idx) 786 self.__setHistoryIndex(index=idx)
787 787
788 def clearAllHistories(self): 788 def clearAllHistories(self):

eric ide

mercurial