src/eric7/Preferences/ConfigurationPages/ProjectBrowserPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
--- a/src/eric7/Preferences/ConfigurationPages/ProjectBrowserPage.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/ProjectBrowserPage.py	Wed Dec 20 14:58:58 2023 +0100
@@ -151,7 +151,8 @@
         Private slot to set the browser checkboxes according to the selected
         project type.
 
-        @param index index of the selected project type (integer)
+        @param index index of the selected project type
+        @type int
         """
         if self.__currentProjectTypeIndex == index:
             return
@@ -168,6 +169,7 @@
         Private slot to handle the change of the 'Follow Editor' checkbox.
 
         @param checked flag indicating the state of the checkbox
+        @type bool
         """
         if not checked:
             self.followCursorLineCheckBox.setChecked(False)
@@ -178,6 +180,7 @@
         Private slot to handle the change of the 'Follow Cursor Line' checkbox.
 
         @param checked flag indicating the state of the checkbox
+        @type bool
         """
         if checked:
             self.followEditorCheckBox.setChecked(True)
@@ -188,7 +191,9 @@
     Module function to create the configuration page.
 
     @param dlg reference to the configuration dialog
-    @return reference to the instantiated page (ConfigurationPageBase)
+    @type ConfigurationDialog
+    @return reference to the instantiated page
+    @rtype ConfigurationPageBase
     """
     page = ProjectBrowserPage()
     return page

eric ide

mercurial