| 76 | } |
| 77 | |
| 78 | Breakpoint::Breakpoint(BreakpointModel *model, BreakpointKind kind) |
| 79 | : m_model(model), m_enabled(true) |
| 80 | , m_deleted(false) |
| 81 | , m_state(NotStartedState) |
| 82 | , m_kind(kind) |
| 83 | , m_line(-1) |
| 84 | , m_movingCursor(nullptr) |
| 85 | , m_hitCount(0) |
| 86 | , m_ignoreHits(0) |
| 87 | { |
| 88 | if (model) { |
| 89 | model->registerBreakpoint(this); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | Breakpoint::Breakpoint(BreakpointModel *model, const KConfigGroup& config) |
| 94 | : m_model(model), m_enabled(true) |
nothing calls this directly
no test coverage detected