src/eric7/Debugger/EditWatchpointDialog.py

branch
eric7
changeset 10417
c6011e501282
parent 10065
de4ae767b0e3
child 10439
21c28b0f9e41
--- a/src/eric7/Debugger/EditWatchpointDialog.py	Sat Dec 16 17:52:02 2023 +0100
+++ b/src/eric7/Debugger/EditWatchpointDialog.py	Sun Dec 17 17:15:19 2023 +0100
@@ -22,12 +22,16 @@
         """
         Constructor
 
-        @param properties properties for the watch expression (tuple)
+        @param properties properties for the watch expression
             (expression, temporary flag, enabled flag, ignore count,
             special condition)
+        @type tuple of (str, bool, bool, int, str)
         @param parent the parent of this dialog
+        @type QWidget
         @param name the widget name of this dialog
+        @type str
         @param modal flag indicating a modal dialog
+        @type bool
         """
         super().__init__(parent)
         self.setupUi(self)
@@ -76,7 +80,8 @@
         Private slot to handle the text changed signal of the condition line
         edit.
 
-        @param txt text of the line edit (string)
+        @param txt text of the line edit
+        @type str
         """
         if self.conditionButton.isChecked():
             self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(
@@ -97,6 +102,7 @@
         @return a tuple containing the watch expressions new properties
             (expression, temporary flag, enabled flag, ignore count,
             special condition)
+        @rtype tuple of (str, bool, bool, int, str)
         """
         if self.conditionButton.isChecked():
             return (

eric ide

mercurial