| 15 | KCompoundJobPrivate::~KCompoundJobPrivate() = default; |
| 16 | |
| 17 | void KCompoundJobPrivate::disconnectSubjob(KJob *job) |
| 18 | { |
| 19 | Q_Q(KCompoundJob); |
| 20 | job->setParent(nullptr); |
| 21 | QObject::disconnect(job, &KJob::finished, q, &KCompoundJob::subjobFinished); |
| 22 | QObject::disconnect(job, &KJob::infoMessage, q, &KCompoundJob::subjobInfoMessage); |
| 23 | } |
| 24 | |
| 25 | KCompoundJob::KCompoundJob(QObject *parent) |
| 26 | : KCompoundJob(*new KCompoundJobPrivate, parent) |
no test coverage detected