| 209 | } |
| 210 | |
| 211 | void ProgressDialog::setMaxNofSteps(const quint64 maxNofSteps) |
| 212 | { |
| 213 | if(m_progressStack.empty() || maxNofSteps == 0) |
| 214 | return; |
| 215 | |
| 216 | ProgressLevelData& pld = m_progressStack.back(); |
| 217 | pld.m_maxNofSteps = maxNofSteps; |
| 218 | pld.m_current = 0; |
| 219 | } |
| 220 | |
| 221 | void ProgressDialog::setInformationImp(const QString& info) |
| 222 | { |