| 28 | } |
| 29 | |
| 30 | void QProgressIndicator::startAnimation() { |
| 31 | m_angle = 0; |
| 32 | |
| 33 | if (m_timerId == -1) { |
| 34 | m_timerId = startTimer(m_delay); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | void QProgressIndicator::stopAnimation() { |
| 39 | if (m_timerId != -1) { |
no outgoing calls
no test coverage detected