Fix compilation warning

propagateuploadng.cpp:500:10: warning: lambda capture 'this' is not used [-Wunused-lambda-capture]
This commit is contained in:
Olivier Goffart 2018-05-28 14:55:10 +02:00 committed by Roeland Jago Douma
parent 3556482bce
commit 14ff3534a8
No known key found for this signature in database
GPG key ID: F941078878347C0C

View file

@ -488,7 +488,7 @@ void PropagateUploadFileNG::abort(PropagatorJob::AbortType abortType)
{
abortNetworkJobs(
abortType,
[this, abortType](AbstractNetworkJob *job) {
[abortType](AbstractNetworkJob *job) {
return abortType != AbortType::Asynchronous || !qobject_cast<MoveJob *>(job);
});
}