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

Method addWatchpoint

kdevplatform/debugger/breakpoint/breakpointmodel.cpp:827–835  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

825}
826
827Breakpoint* BreakpointModel::addWatchpoint()
828{
829 Q_D(BreakpointModel);
830
831 beginInsertRows(QModelIndex(), d->breakpoints.count(), d->breakpoints.count());
832 auto* n = new Breakpoint(this, Breakpoint::WriteBreakpoint);
833 endInsertRows();
834 return n;
835}
836
837Breakpoint* BreakpointModel::addWatchpoint(const QString& expression)
838{

Callers 3

stopOnChangeMethod · 0.45
slotLinkActivatedMethod · 0.45

Calls 3

setExpressionMethod · 0.80
QModelIndexClass · 0.70
countMethod · 0.45

Tested by

no test coverage detected