diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/Project/QuickFindFileDialog.py --- a/src/eric7/Project/QuickFindFileDialog.py Tue Apr 23 09:29:13 2024 +0200 +++ b/src/eric7/Project/QuickFindFileDialog.py Tue Apr 23 11:26:04 2024 +0200 @@ -255,7 +255,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. @@ -264,19 +264,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(