| 214 | } |
| 215 | |
| 216 | void BreakpointWidget::edit(KDevelop::Breakpoint *n) |
| 217 | { |
| 218 | Q_D(BreakpointWidget); |
| 219 | |
| 220 | QModelIndex index = d->proxyModel->mapFromSource(d->debugController->breakpointModel()->breakpointIndex(n, Breakpoint::LocationColumn)); |
| 221 | d->breakpointsView->setCurrentIndex(index); |
| 222 | d->breakpointsView->edit(index); |
| 223 | } |
| 224 | |
| 225 | void BreakpointWidget::slotDataInserted(int column, const QVariant& value) |
| 226 | { |
no test coverage detected