* @brief QProgressIndicator::timerEvent do the actual animation. */
| 80 | * @brief QProgressIndicator::timerEvent do the actual animation. |
| 81 | */ |
| 82 | void QProgressIndicator::timerEvent(QTimerEvent * /*event*/) { |
| 83 | m_angle = (m_angle + 30) % 360; |
| 84 | |
| 85 | update(); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * @brief QProgressIndicator::paintEvent draw the spinner. |
nothing calls this directly
no outgoing calls
no test coverage detected