Port to updeprecated KJob::processedAmountChanged signal
This commit is contained in:
parent
3effb006f3
commit
042adebd0a
2 changed files with 2 additions and 5 deletions
|
@ -90,7 +90,7 @@ void CompositeUploadJob::startNextSubJob()
|
||||||
m_currentJobSendPayloadSize = 0;
|
m_currentJobSendPayloadSize = 0;
|
||||||
emitDescription(m_currentJob->getNetworkPacket().get<QString>(QStringLiteral("filename")));
|
emitDescription(m_currentJob->getNetworkPacket().get<QString>(QStringLiteral("filename")));
|
||||||
|
|
||||||
connect(m_currentJob, QOverload<KJob *, KJob::Unit, qulonglong>::of(&UploadJob::processedAmount), this, &CompositeUploadJob::slotProcessedAmount);
|
connect(m_currentJob, &UploadJob::processedAmountChanged, this, &CompositeUploadJob::slotProcessedAmount);
|
||||||
|
|
||||||
// Already done by KCompositeJob
|
// Already done by KCompositeJob
|
||||||
// connect(m_currentJob, &KJob::result, this, &CompositeUploadJob::slotResult);
|
// connect(m_currentJob, &KJob::result, this, &CompositeUploadJob::slotResult);
|
||||||
|
|
|
@ -47,10 +47,7 @@ void CompositeFileTransferJob::startNextSubJob()
|
||||||
{i18nc("The destination of a file operation", "Destination"), m_currentJob->destination().toDisplayString(QUrl::PreferLocalFile)});
|
{i18nc("The destination of a file operation", "Destination"), m_currentJob->destination().toDisplayString(QUrl::PreferLocalFile)});
|
||||||
|
|
||||||
m_currentJob->start();
|
m_currentJob->start();
|
||||||
connect(m_currentJob,
|
connect(m_currentJob, &FileTransferJob::processedAmountChanged, this, &CompositeFileTransferJob::slotProcessedAmount);
|
||||||
QOverload<KJob *, KJob::Unit, qulonglong>::of(&FileTransferJob::processedAmount),
|
|
||||||
this,
|
|
||||||
&CompositeFileTransferJob::slotProcessedAmount);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CompositeFileTransferJob::addSubjob(KJob *job)
|
bool CompositeFileTransferJob::addSubjob(KJob *job)
|
||||||
|
|
Loading…
Reference in a new issue