src/eric7/UI/DeleteFilesConfirmationDialog.py

branch
eric7
changeset 10433
328f3ec4b77a
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- 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()

eric ide

mercurial