diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/QuickFindFileDialog.py --- a/src/eric7/Project/QuickFindFileDialog.py Wed Dec 20 15:42:44 2023 +0100 +++ b/src/eric7/Project/QuickFindFileDialog.py Wed Dec 20 19:28:22 2023 +0100 @@ -101,7 +101,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.stopButton: self.shouldStop = True @@ -241,6 +242,7 @@ Private slot to handle the textChanged signal of the file name edit. @param text (ignored) + @type str """ self.__searchFile() @@ -260,8 +262,10 @@ It emits the signal sourceFile or designerFile depending on the file extension. - @param itm the double clicked listview item (QTreeWidgetItem) - @param column column that was double clicked (integer) (ignored) + @param itm the double clicked listview item + @type QTreeWidgetItem + @param column column that was double clicked + @type int """ self.__openFile(itm) @@ -270,8 +274,10 @@ """ Private slot handling a change of the current item. - @param current current item (QTreeWidgetItem) - @param previous prevoius current item (QTreeWidgetItem) + @param current current item + @type QTreeWidgetItem + @param previous prevoius current item + @type QTreeWidgetItem """ self.buttonBox.button(QDialogButtonBox.StandardButton.Open).setEnabled( current is not None