| 45 | } |
| 46 | |
| 47 | void AsyncRefreshProgressCallback::SetProgressValue(u32 value) |
| 48 | { |
| 49 | BaseProgressCallback::SetProgressValue(value); |
| 50 | if (static_cast<int>(m_progress_value) == m_last_value) |
| 51 | return; |
| 52 | |
| 53 | m_last_value = static_cast<int>(m_progress_value); |
| 54 | fireUpdate(); |
| 55 | } |
| 56 | |
| 57 | void AsyncRefreshProgressCallback::SetTitle(const char* title) |
| 58 | { |
no outgoing calls
no test coverage detected