diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-28 00:12:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-16 01:20:17 +0100 |
| commit | 86c169fa6cc97f2e627e281b9cd75429f4eeb670 (patch) | |
| tree | d5a89c303f813deeef52bfb3c3a33857986a3ba7 /src/lib/image_content.cc | |
| parent | a7a3f17e003bab57967e502b35e2f1b689a7f1cb (diff) | |
Remove Film from the whole examination chain.
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 8b9b06ab2..437508f4f 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -112,7 +112,7 @@ ImageContent::as_xml(xmlpp::Element* element, bool with_paths, PathBehaviour pat void -ImageContent::examine(shared_ptr<const Film> film, shared_ptr<Job> job, bool tolerant) +ImageContent::examine(shared_ptr<Job> job, bool tolerant) { if (_path_to_scan) { job->sub (_("Scanning image files")); @@ -136,9 +136,9 @@ ImageContent::examine(shared_ptr<const Film> film, shared_ptr<Job> job, bool tol set_paths (paths); } - Content::examine(film, job, tolerant); + Content::examine(job, tolerant); - auto examiner = make_shared<ImageExaminer>(film, shared_from_this(), job); + auto examiner = make_shared<ImageExaminer>(shared_from_this(), job); video->take_from_examiner(examiner); set_default_colour_conversion (); } |
