| 415 | } |
| 416 | |
| 417 | void Breakpoint::setState(BreakpointState state) |
| 418 | { |
| 419 | if (m_state == state) |
| 420 | return; |
| 421 | |
| 422 | m_state = state; |
| 423 | |
| 424 | // BreakpointState affects the breakpoint mark type. |
| 425 | updateMarkType(); |
| 426 | |
| 427 | reportChange(StateColumn); |
| 428 | } |
| 429 | |
| 430 | Breakpoint::BreakpointState Breakpoint::state() const |
| 431 | { |
no outgoing calls