| 505 | } |
| 506 | |
| 507 | int KDevelop::BreakpointModel::rowCount(const QModelIndex& parent) const |
| 508 | { |
| 509 | Q_D(const BreakpointModel); |
| 510 | |
| 511 | if (!parent.isValid()) { |
| 512 | return d->breakpoints.count(); |
| 513 | } |
| 514 | return 0; |
| 515 | } |
| 516 | |
| 517 | int KDevelop::BreakpointModel::columnCount(const QModelIndex& parent) const |
| 518 | { |
no test coverage detected