src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10311
0a141f9ae677
child 10439
21c28b0f9e41
diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py	Wed Dec 20 14:58:58 2023 +0100
@@ -291,8 +291,10 @@
         """
         Private method to set the state of the edit and delete button.
 
-        @param current new current item (QListWidgetItem)
-        @param previous previous current item (QListWidgetItem)
+        @param current new current item
+        @type QListWidgetItem
+        @param previous previous current item
+        @type QListWidgetItem
         """
         self.editAllowedHostButton.setEnabled(current is not None)
         self.deleteAllowedHostButton.setEnabled(current is not None)
@@ -485,7 +487,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
     """
     return DebuggerGeneralPage()
 

eric ide

mercurial