MCPcopy Create free account
hub / github.com/KDE/kdevelop / sendMaybeAll

Method sendMaybeAll

kdevplatform/debugger/interfaces/ibreakpointcontroller.cpp:164–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162}
163
164void IBreakpointController::sendMaybeAll()
165{
166 BreakpointModel* model = breakpointModel();
167 if (!model)
168 return;
169
170 const auto breakpoints = model->breakpoints();
171 for (Breakpoint* breakpoint : breakpoints) {
172 sendMaybe(breakpoint);
173 }
174}
175
176// Temporary implementation to ease the API transition
177void IBreakpointController::breakpointAboutToBeDeleted(int row)

Callers

nothing calls this directly

Calls 2

breakpointModelFunction · 0.85
breakpointsMethod · 0.45

Tested by

no test coverage detected