| 59 | } |
| 60 | |
| 61 | void KSequentialCompoundJob::start() |
| 62 | { |
| 63 | Q_D(KSequentialCompoundJob); |
| 64 | if (d->m_subjobs.empty()) { |
| 65 | qCDebug(UTIL) << "no subjobs, finishing in start()"; |
| 66 | emitResult(); |
| 67 | return; |
| 68 | } |
| 69 | |
| 70 | d->startNextSubjob(); |
| 71 | } |
| 72 | |
| 73 | void KSequentialCompoundJob::subjobPercentChanged(KJob *job, unsigned long percent) |
| 74 | { |
no test coverage detected