| 256 | } |
| 257 | |
| 258 | void ProgressDialog::setCurrent(quint64 subCurrent, bool bRedrawUpdate) |
| 259 | { |
| 260 | if(m_progressStack.empty()) |
| 261 | return; |
| 262 | |
| 263 | ProgressLevelData& pld = m_progressStack.back(); |
| 264 | pld.m_current = subCurrent; |
| 265 | |
| 266 | recalc(bRedrawUpdate); |
| 267 | } |
| 268 | |
| 269 | void ProgressDialog::clear() |
| 270 | { |