src/eric7/Debugger/ExceptionsFilterDialog.py

branch
eric7
changeset 10417
c6011e501282
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
--- a/src/eric7/Debugger/ExceptionsFilterDialog.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/Debugger/ExceptionsFilterDialog.py	Sun Dec 17 17:15:19 2023 +0100
@@ -22,9 +22,12 @@
         """
         Constructor
 
-        @param excList list of exceptions to be edited (list of strings)
-        @param ignore flag indicating the ignore exceptions mode (boolean)
-        @param parent the parent widget (QWidget)
+        @param excList list of exceptions to be edited
+        @type list of str
+        @param ignore flag indicating the ignore exceptions mode
+        @type bool
+        @param parent reference to the parent widget
+        @type QWidget
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -79,7 +82,8 @@
         This slot sets the enabled status of the add button and sets the forms
         default button.
 
-        @param txt the text entered into exceptionEdit (string)
+        @param txt the text entered into exceptionEdit
+        @type str
         """
         if not txt:
             self.okButton.setDefault(True)
@@ -94,7 +98,8 @@
         """
         Public method to retrieve the list of exception types.
 
-        @return list of exception types (list of strings)
+        @return list of exception types
+        @rtype list of str
         """
         excList = []
         for row in range(0, self.exceptionList.count()):

eric ide

mercurial