| 80 | } |
| 81 | |
| 82 | void ProgressBar::setProgressPosition(size_t _pos) |
| 83 | { |
| 84 | if (mAutoTrack) |
| 85 | return; |
| 86 | mEndPosition = _pos; |
| 87 | if (mEndPosition > mRange) |
| 88 | mEndPosition = mRange; |
| 89 | updateTrack(); |
| 90 | } |
| 91 | |
| 92 | void ProgressBar::setProgressAutoTrack(bool _auto) |
| 93 | { |
no outgoing calls
no test coverage detected