summaryrefslogtreecommitdiffstats
path: root/jobqueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'jobqueue.cpp')
-rw-r--r--jobqueue.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/jobqueue.cpp b/jobqueue.cpp
index c18ffee..be747d2 100644
--- a/jobqueue.cpp
+++ b/jobqueue.cpp
@@ -22,6 +22,7 @@ void JobQueue::runNextJob()
Job *job = m_queue.dequeue();
qDebug() << "running job" << job->jobType() << "for video" << qobject_cast<Video*>(job->parent())->title();
connect(job, SIGNAL(completed(bool)), this, SLOT(jobCompleted()));
+ emit runningJob(job);
job->runJob();
}
void JobQueue::jobCompleted()