Fix typo in log message.
[dcpomatic.git] / src / lib / examine_content_job.h
index 00d27a342391f4f9681cb60358898442cc54afc1..601b285844a0466dd66f5e652cb582602028ea8f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "job.h"
 
+
 class Content;
 
+
 class ExamineContentJob : public Job
 {
 public:
        ExamineContentJob (std::shared_ptr<const Film>, std::shared_ptr<Content>);
        ~ExamineContentJob ();
 
-       std::string name () const;
-       std::string json_name () const;
-       void run ();
+       std::string name () const override;
+       std::string json_name () const override;
+       void run () override;
 
        std::shared_ptr<Content> content () const {
                return _content;