| 246 | } |
| 247 | |
| 248 | void ProgressDialog::step(bool bRedrawUpdate) |
| 249 | { |
| 250 | if(m_progressStack.empty()) |
| 251 | return; |
| 252 | |
| 253 | ProgressLevelData& pld = m_progressStack.back(); |
| 254 | pld.m_current.fetchAndAddRelaxed(1); |
| 255 | recalc(bRedrawUpdate); |
| 256 | } |
| 257 | |
| 258 | void ProgressDialog::setCurrent(quint64 subCurrent, bool bRedrawUpdate) |
| 259 | { |
nothing calls this directly
no outgoing calls
no test coverage detected