diff -r 9986ec0e559a -r 10516539f238 Debugger/EditBreakpointDialog.py --- 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())