diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-15 03:36:59 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-15 18:03:57 +0200 |
| commit | 21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch) | |
| tree | 46265de6587585d292ac4c97267327af0c359c1c /src/lib/film.h | |
| parent | 6207d271effad4e691a5155ccdad083e03b010bc (diff) | |
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index e1a8e88a3..c4c55a12a 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -378,7 +378,7 @@ public: void set_directory(boost::filesystem::path); void set_name(std::string); void set_use_isdcf_name(bool); - void examine_and_add_content(std::shared_ptr<Content> content, bool disable_audio_analysis = false); + void examine_and_add_content(std::vector<std::shared_ptr<Content>> const& content, bool disable_audio_analysis = false); void add_content(std::vector<std::shared_ptr<Content>> const& content); void remove_content(std::shared_ptr<Content>); void remove_content(ContentList); |
