More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / examine_content_job.cc
index a304ebea09130bfa80894d2ce51e1ca2247d85ed..86e0a107e1eec1d6351ded90b132e1a24a3a16e3 100644 (file)
@@ -38,14 +38,10 @@ ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Co
 
 }
 
-ExamineContentJob::~ExamineContentJob ()
-{
-}
-
 string
 ExamineContentJob::name () const
 {
-       return _("Examine content");
+       return _("Examining content");
 }
 
 string
@@ -57,7 +53,7 @@ ExamineContentJob::json_name () const
 void
 ExamineContentJob::run ()
 {
-       _content->examine (shared_from_this ());
+       _content->examine (_film, shared_from_this());
        set_progress (1);
        set_state (FINISHED_OK);
 }