| 291 | } |
| 292 | |
| 293 | void ProgressDialog::setSubRangeTransformation(double dMin, double dMax) |
| 294 | { |
| 295 | if(m_progressStack.empty()) |
| 296 | return; |
| 297 | |
| 298 | ProgressLevelData& pld = m_progressStack.back(); |
| 299 | pld.m_dSubRangeMin = dMin; |
| 300 | pld.m_dSubRangeMax = dMax; |
| 301 | } |
| 302 | |
| 303 | void ProgressDialog::enterEventLoop(KJob* pJob, const QString& jobInfo) |
| 304 | { |
nothing calls this directly
no outgoing calls
no test coverage detected