src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py

branch
eric7
changeset 10437
2f70ca07f0af
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py	Fri Dec 22 17:24:07 2023 +0100
+++ b/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py	Fri Dec 22 19:45:17 2023 +0100
@@ -34,9 +34,12 @@
         """
         Constructor
 
-        @param project reference to the project object (Project.Project)
+        @param project reference to the project object
+        @type Project
         @param parms parameters to set in the dialog
+        @type dict
         @param parent parent widget of this dialog
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -406,7 +409,8 @@
         """
         Private method to select a color.
 
-        @param colorKey key of the color to select (string)
+        @param colorKey key of the color to select
+        @type str
         """
         color = QColorDialog.getColor(QColor(self.colors[colorKey]))
         if color.isValid():
@@ -500,7 +504,8 @@
         """
         Private slot to toggle the generation of QtHelp files.
 
-        @param enabled flag indicating the state (boolean)
+        @param enabled flag indicating the state
+        @type bool
         """
         self.__checkQtHelpOptions()
 
@@ -509,7 +514,8 @@
         """
         Private slot to check the namespace.
 
-        @param txt text of the line edit (string)
+        @param txt text of the line edit
+        @type str
         """
         self.__checkQtHelpOptions()
 
@@ -518,7 +524,8 @@
         """
         Private slot to check the virtual folder.
 
-        @param txt text of the line edit (string)
+        @param txt text of the line edit
+        @type str
         """
         self.__checkQtHelpOptions()
 
@@ -527,7 +534,8 @@
         """
         Private slot to check the title.
 
-        @param txt text of the line edit (string)
+        @param txt text of the line edit
+        @type str
         """
         self.__checkQtHelpOptions()
 

eric ide

mercurial