src/eric7/Project/AddFoundFilesDialog.py

branch
eric7
changeset 10430
e440aaf179ce
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 643989a1e2bd -r e440aaf179ce src/eric7/Project/AddFoundFilesDialog.py
--- a/src/eric7/Project/AddFoundFilesDialog.py	Wed Dec 20 15:42:44 2023 +0100
+++ b/src/eric7/Project/AddFoundFilesDialog.py	Wed Dec 20 19:28:22 2023 +0100
@@ -27,9 +27,11 @@
         Constructor
 
         @param files list of files, that have been found for addition
-            (list of strings)
-        @param parent parent widget of this dialog (QWidget)
-        @param name name of this dialog (string)
+        @type list of str
+        @param parent parent widget of this dialog
+        @type QWidget
+        @param name name of this dialog
+        @type str
         """
         super().__init__(parent)
         if name:
@@ -52,7 +54,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.addAllButton:
             self.on_addAllButton_clicked()
@@ -81,7 +84,8 @@
         """
         Public method to return the selected items.
 
-        @return list of selected files (list of strings)
+        @return list of selected files
+        @rtype list of str
         """
         list_ = []
         for itm in self.fileList.selectedItems():

eric ide

mercurial