Debugger/EditBreakpointDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2988
f53c03574697
child 3145
a9de05d4a22f
--- a/Debugger/EditBreakpointDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Debugger/EditBreakpointDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -36,9 +36,12 @@
         @param properties properties for the breakpoint (tuple)
                 (condition, temporary flag, enabled flag, ignore count)
         @param condHistory the list of conditionals history (list of strings)
-        @param parent the parent of this dialog
-        @param name the widget name of this dialog
-        @param modal flag indicating a modal dialog
+        @param parent the parent of this dialog (QWidget)
+        @param name the widget name of this dialog (string)
+        @param modal flag indicating a modal dialog (boolean)
+        @param addMode flag indicating the add mode (boolean)
+        @param filenameHistory list of recently used file names
+            (list of strings)
         """
         super(EditBreakpointDialog, self).__init__(parent)
         self.setupUi(self)
@@ -150,7 +153,8 @@
         Public method to retrieve the entered data for an add.
         
         @return a tuple containing the new breakpoints properties
-            (filename, lineno, condition, temporary flag, enabled flag, ignore count)
+            (filename, lineno, condition, temporary flag, enabled flag,
+            ignore count)
         """
         fn = self.filenameCombo.currentText()
         if not fn:
@@ -160,5 +164,6 @@
         
         return (fn, self.linenoSpinBox.value(),
                 self.conditionCombo.currentText(),
-                self.temporaryCheckBox.isChecked(), self.enabledCheckBox.isChecked(),
+                self.temporaryCheckBox.isChecked(),
+                self.enabledCheckBox.isChecked(),
                 self.ignoreSpinBox.value())

eric ide

mercurial