| 206 | } |
| 207 | |
| 208 | void IBreakpointController::setHitCount(Breakpoint* breakpoint, int count) |
| 209 | { |
| 210 | m_dontSendChanges++; |
| 211 | updateHitCount(breakpointModel()->breakpointIndex(breakpoint, 0).row(), count); |
| 212 | m_dontSendChanges--; |
| 213 | } |
| 214 | |
| 215 | void IBreakpointController::error(Breakpoint* breakpoint, const QString &msg, Breakpoint::Column column) |
| 216 | { |
no test coverage detected