| 307 | } |
| 308 | |
| 309 | void Breakpoint::setHitCount(int hits) |
| 310 | { |
| 311 | if (m_hitCount == hits) |
| 312 | return; |
| 313 | |
| 314 | m_hitCount = hits; |
| 315 | |
| 316 | // hit count affects the breakpoint mark type. |
| 317 | updateMarkType(); |
| 318 | |
| 319 | reportChange(HitCountColumn); |
| 320 | } |
| 321 | |
| 322 | int Breakpoint::hitCount() const |
| 323 | { |
no outgoing calls