diff -r 306373ccf8fd -r 27d21e5163b8 src/eric7/Project/QuickFindFileDialog.py --- a/src/eric7/Project/QuickFindFileDialog.py Wed Apr 10 17:03:56 2024 +0200 +++ b/src/eric7/Project/QuickFindFileDialog.py Wed May 15 10:45:50 2024 +0200 @@ -275,7 +275,7 @@ self.close() @pyqtSlot(QTreeWidgetItem, int) - def on_fileList_itemActivated(self, itm, column): + def on_fileList_itemActivated(self, itm, _column): """ Private slot to handle the double click on a file item. @@ -284,19 +284,19 @@ @param itm the double clicked listview item @type QTreeWidgetItem - @param column column that was double clicked + @param _column column that was double clicked (unused) @type int """ self.__openFile(itm) @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem) - def on_fileList_currentItemChanged(self, current, previous): + def on_fileList_currentItemChanged(self, current, _previous): """ Private slot handling a change of the current item. @param current current item @type QTreeWidgetItem - @param previous prevoius current item + @param _previous prevoius current item (unused) @type QTreeWidgetItem """ self.buttonBox.button(QDialogButtonBox.StandardButton.Open).setEnabled(