src/eric7/QtHelpInterface/HelpSearchWidget.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10691:d1a603a70f83 10692:9becf9ca115c
87 Private slot to handle the start of a search. 87 Private slot to handle the start of a search.
88 """ 88 """
89 QApplication.setOverrideCursor(Qt.CursorShape.WaitCursor) 89 QApplication.setOverrideCursor(Qt.CursorShape.WaitCursor)
90 90
91 @pyqtSlot(int) 91 @pyqtSlot(int)
92 def __searchingFinished(self, hits): 92 def __searchingFinished(self, _hits):
93 """ 93 """
94 Private slot to handle the end of the search. 94 Private slot to handle the end of the search.
95 95
96 @param hits number of hits (unused) 96 @param _hits number of hits (unused)
97 @type int 97 @type int
98 """ 98 """
99 QApplication.restoreOverrideCursor() 99 QApplication.restoreOverrideCursor()
100 100
101 @pyqtSlot(QUrl) 101 @pyqtSlot(QUrl)

eric ide

mercurial