public void UpdateBreakpointLine(Breakpoint bp, int newLine) { if (IsReadOnly) { return; } bp.SetLine(newLine); NotifyBreakEventChanged(bp); }
void SaveBreakpoint (Breakpoint bp) { bp.SetColumn (breakpointLocation.Column); bp.SetLine (breakpointLocation.Line); }
public void UpdateBreakpointLine(Breakpoint bp, int newLine) { Remove(bp); bp.SetLine(newLine); Add(bp); }