| 36 | } |
| 37 | |
| 38 | void QProgressIndicator::stopAnimation() { |
| 39 | if (m_timerId != -1) { |
| 40 | killTimer(m_timerId); |
| 41 | } |
| 42 | |
| 43 | m_timerId = -1; |
| 44 | |
| 45 | update(); |
| 46 | } |
| 47 | |
| 48 | void QProgressIndicator::setAnimationDelay(int delay) { |
| 49 | if (m_timerId != -1) { |
no outgoing calls
no test coverage detected