--- a/src/eric7/UI/DeleteFilesConfirmationDialog.py Thu Dec 21 15:46:22 2023 +0100 +++ b/src/eric7/UI/DeleteFilesConfirmationDialog.py Thu Dec 21 19:50:01 2023 +0100 @@ -21,10 +21,14 @@ """ Constructor - @param parent parent of this dialog (QWidget) - @param caption window title for the dialog (string) - @param message message to be shown (string) - @param files list of filenames to be shown (list of strings) + @param parent parent of this dialog + @type QWidget + @param caption window title for the dialog + @type str + @param message message to be shown + @type str + @param files list of filenames to be shown + @type list of str """ super().__init__(parent) self.setupUi(self) @@ -43,7 +47,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.buttonBox.button(QDialogButtonBox.StandardButton.Yes): self.accept()