Fix typo in log message.
[dcpomatic.git] / src / lib / examine_content_job.cc
index 81088a4416cd0e7a838adaf4578e6c1e14b55d3e..baa11ac93218820152ab5f3230d110fa0a9446df 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
-#include <boost/filesystem.hpp>
-#include "examine_content_job.h"
-#include "log.h"
+
 #include "content.h"
+#include "examine_content_job.h"
 #include "film.h"
+#include "log.h"
+#include <boost/filesystem.hpp>
 #include <iostream>
 
 #include "i18n.h"
 
+
 using std::string;
 using std::cout;
-using boost::shared_ptr;
+using std::shared_ptr;
+
 
 ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Content> c)
        : Job (film)
@@ -38,18 +41,27 @@ ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Co
 
 }
 
+
+ExamineContentJob::~ExamineContentJob ()
+{
+       stop_thread ();
+}
+
+
 string
 ExamineContentJob::name () const
 {
-       return _("Examine content");
+       return _("Examining content");
 }
 
+
 string
 ExamineContentJob::json_name () const
 {
        return N_("examine_content");
 }
 
+
 void
 ExamineContentJob::run ()
 {