summaryrefslogtreecommitdiff
path: root/src/lib/corelib/buildgraph/executor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/executor.cpp')
-rw-r--r--src/lib/corelib/buildgraph/executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/executor.cpp b/src/lib/corelib/buildgraph/executor.cpp
index 9ef51d95f..fe2815aa7 100644
--- a/src/lib/corelib/buildgraph/executor.cpp
+++ b/src/lib/corelib/buildgraph/executor.cpp
@@ -1056,7 +1056,7 @@ void Executor::onJobFinished(const qbs::ErrorInfo &err)
if (m_evalContext->engine()->isActive()) {
qCDebug(lcExec) << "Executor job finished while rule execution is pausing. "
"Delaying slot execution.";
- QTimer::singleShot(0, job, [job, err] { job->finished(err); });
+ QTimer::singleShot(0, job, [job, err] { emit job->finished(err); });
return;
}