diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-31 22:20:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-31 22:20:30 +0100 |
| commit | 291e2fe2e7df95019feba8097b68b31ec64be794 (patch) | |
| tree | cdac55d0ed47721190529b3443664bd3f64aa862 /src/lib/image_content.cc | |
| parent | 7d9321ff829498c2c87d924a9b660acbfdafa6b3 (diff) | |
Restore some missing stuff to the content properties dialogue.
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index e26eed3d0..d4e736771 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -37,6 +37,7 @@ using std::string; using std::cout; +using std::list; using boost::shared_ptr; ImageContent::ImageContent (shared_ptr<const Film> film, boost::filesystem::path p) @@ -169,3 +170,10 @@ ImageContent::set_default_colour_conversion () video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion); } } + +void +ImageContent::add_properties (list<UserProperty>& p) const +{ + Content::add_properties (p); + video->add_properties (p); +} |
