--- a/Debugger/EditBreakpointDialog.py Tue Mar 07 18:46:09 2017 +0100 +++ b/Debugger/EditBreakpointDialog.py Tue Mar 07 18:53:18 2017 +0100 @@ -22,12 +22,12 @@ """ Class implementing a dialog to edit breakpoint properties. """ - def __init__(self, id, properties, condHistory, parent=None, name=None, - modal=False, addMode=False, filenameHistory=None): + def __init__(self, breakPointId, properties, condHistory, parent=None, + name=None, modal=False, addMode=False, filenameHistory=None): """ Constructor - @param id id of the breakpoint (tuple) + @param breakPointId id of the breakpoint (tuple) (filename, linenumber) @param properties properties for the breakpoint (tuple) (condition, temporary flag, enabled flag, ignore count) @@ -49,7 +49,7 @@ self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) - fn, lineno = id + fn, lineno = breakPointId if not addMode: cond, temp, enabled, count = properties