src/eric7/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py

branch
eric7
changeset 10437
2f70ca07f0af
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py	Fri Dec 22 17:24:07 2023 +0100
+++ b/src/eric7/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py	Fri Dec 22 19:45:17 2023 +0100
@@ -165,7 +165,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.bTest:
             self.on_bTest_clicked()
@@ -313,7 +314,8 @@
         Private slot to enable/disable the initial filter elements and the
         results entries.
 
-        @param checkedId id of the clicked button (integer)
+        @param checkedId id of the clicked button
+        @type int
         """
         enable = (self.__dialogVariant in (-1, -2) and checkedId in [11, 12, 13]) or (
             self.__dialogVariant in (5, 6) and checkedId in [1, 2, 3, 21, 22, 23]
@@ -332,9 +334,12 @@
         """
         Public method to get the source code for Qt6.
 
-        @param indLevel indentation level (int)
-        @param indString string used for indentation (space or tab) (string)
-        @return generated code (string)
+        @param indLevel indentation level
+        @type int
+        @param indString string used for indentation (space or tab)
+        @type str
+        @return generated code
+        @rtype str
         """
         # calculate our indentation level and the indentation string
         il = indLevel + 1

eric ide

mercurial