QScintilla/SearchReplaceWidget.py

changeset 486
e4711a55e482
parent 482
4650a72c307a
child 500
c3abc7895a01
equal deleted inserted replaced
485:b17b3aea644e 486:e4711a55e482
10 from PyQt4.QtCore import * 10 from PyQt4.QtCore import *
11 from PyQt4.QtGui import * 11 from PyQt4.QtGui import *
12 12
13 from .Ui_SearchWidget import Ui_SearchWidget 13 from .Ui_SearchWidget import Ui_SearchWidget
14 from .Ui_ReplaceWidget import Ui_ReplaceWidget 14 from .Ui_ReplaceWidget import Ui_ReplaceWidget
15
16 from .Editor import Editor
15 17
16 from E5Gui.E5Action import E5Action 18 from E5Gui.E5Action import E5Action
17 19
18 import Preferences 20 import Preferences
19 21
417 Public slot tracking changes of selected text. 419 Public slot tracking changes of selected text.
418 """ 420 """
419 aw = self.sender() 421 aw = self.sender()
420 self.updateSelectionCheckBox(aw) 422 self.updateSelectionCheckBox(aw)
421 423
424 @pyqtSlot(Editor)
422 def updateSelectionCheckBox(self, editor): 425 def updateSelectionCheckBox(self, editor):
423 """ 426 """
424 Public slot to update the selection check box. 427 Public slot to update the selection check box.
425 428
426 @param editor reference to the editor (Editor) 429 @param editor reference to the editor (Editor)

eric ide

mercurial