--- a/src/eric7/Project/QuickFindFileDialog.py Thu May 25 11:12:05 2023 +0200 +++ b/src/eric7/Project/QuickFindFileDialog.py Thu May 25 19:51:47 2023 +0200 @@ -235,6 +235,7 @@ if found: self.fileList.setCurrentItem(self.fileList.topLevelItem(0)) + @pyqtSlot(str) def on_fileNameEdit_textChanged(self, text): """ Private slot to handle the textChanged signal of the file name edit. @@ -243,6 +244,7 @@ """ self.__searchFile() + @pyqtSlot() def on_fileNameEdit_returnPressed(self): """ Private slot to handle enter being pressed on the file name edit box. @@ -250,6 +252,7 @@ if self.__openFile(): self.close() + @pyqtSlot(QTreeWidgetItem, int) def on_fileList_itemActivated(self, itm, column): """ Private slot to handle the double click on a file item.