summaryrefslogtreecommitdiff
path: root/src/lib/job.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/job.cc')
-rw-r--r--src/lib/job.cc12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc
index f3d7deac0..a7c2430b8 100644
--- a/src/lib/job.cc
+++ b/src/lib/job.cc
@@ -125,20 +125,10 @@ Job::set_state (State s)
if (_state == FINISHED_OK || _state == FINISHED_ERROR) {
_ran_for = elapsed_time ();
+ Finished ();
}
}
-/** A hack to work around our lack of cross-thread
- * signalling; this emits Finished, and listeners
- * assume that it will be emitted in the GUI thread,
- * so this method must be called from the GUI thread.
- */
-void
-Job::emit_finished ()
-{
- Finished ();
-}
-
/** @return Time (in seconds) that this job has been running */
int
Job::elapsed_time () const