| 825 | } |
| 826 | |
| 827 | Breakpoint* 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 | |
| 837 | Breakpoint* BreakpointModel::addWatchpoint(const QString& expression) |
| 838 | { |
no test coverage detected