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) |