summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-09 21:24:46 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-10 23:12:13 +0200
commit3d9c0674236a425f0be5e9caff5e23f59e7c037a (patch)
tree615327e6ce90fa79e8d6072065fb67b6b85410c5 /src/lib
parentca5cc79f4464c5e9f34480757c288b9bbcb569ec (diff)
Rename CheckContentChangeJob -> CheckContentJob.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/check_content_job.cc (renamed from src/lib/check_content_change_job.cc)16
-rw-r--r--src/lib/check_content_job.h (renamed from src/lib/check_content_change_job.h)10
-rw-r--r--src/lib/film.cc1
-rw-r--r--src/lib/wscript2
4 files changed, 14 insertions, 15 deletions
diff --git a/src/lib/check_content_change_job.cc b/src/lib/check_content_job.cc
index 16ef8d864..a789ed9e0 100644
--- a/src/lib/check_content_change_job.cc
+++ b/src/lib/check_content_job.cc
@@ -19,7 +19,7 @@
*/
-#include "check_content_change_job.h"
+#include "check_content_job.h"
#include "content.h"
#include "examine_content_job.h"
#include "film.h"
@@ -35,31 +35,31 @@ using std::shared_ptr;
using std::string;
-CheckContentChangeJob::CheckContentChangeJob (shared_ptr<const Film> film)
+CheckContentJob::CheckContentJob (shared_ptr<const Film> film)
: Job (film)
{
}
-CheckContentChangeJob::~CheckContentChangeJob ()
+CheckContentJob::~CheckContentJob ()
{
stop_thread ();
}
string
-CheckContentChangeJob::name () const
+CheckContentJob::name () const
{
- return _("Checking content for changes");
+ return _("Checking content");
}
string
-CheckContentChangeJob::json_name () const
+CheckContentJob::json_name () const
{
- return N_("check_content_change");
+ return N_("check_content");
}
void
-CheckContentChangeJob::run ()
+CheckContentJob::run ()
{
set_progress_unknown ();
diff --git a/src/lib/check_content_change_job.h b/src/lib/check_content_job.h
index a374e2a6f..3a8e8d653 100644
--- a/src/lib/check_content_change_job.h
+++ b/src/lib/check_content_job.h
@@ -20,15 +20,15 @@
#include "job.h"
-/** @class CheckContentChangeJob
- * @brief A job to check whether content has changed since it was added to the film.
+/** @class CheckContentJob
+ * @brief A job to check content that was just loaded to see if anything needs fixing about it.
*/
-class CheckContentChangeJob : public Job
+class CheckContentJob : public Job
{
public:
- CheckContentChangeJob (std::shared_ptr<const Film>);
- ~CheckContentChangeJob ();
+ CheckContentJob (std::shared_ptr<const Film>);
+ ~CheckContentJob ();
std::string name () const override;
std::string json_name () const override;
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 54267bc56..1aba68eeb 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -29,7 +29,6 @@
#include "audio_content.h"
#include "audio_processor.h"
#include "change_signaller.h"
-#include "check_content_change_job.h"
#include "cinema.h"
#include "compose.hpp"
#include "config.h"
diff --git a/src/lib/wscript b/src/lib/wscript
index 6bab60d54..8d3bb8eb5 100644
--- a/src/lib/wscript
+++ b/src/lib/wscript
@@ -48,7 +48,7 @@ sources = """
text_content.cc
text_decoder.cc
case_insensitive_sorter.cc
- check_content_change_job.cc
+ check_content_job.cc
cinema.cc
cinema_sound_processor.cc
colour_conversion.cc