diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-19 09:25:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-19 09:25:33 +0100 |
| commit | 53eea12d3e0d7925d5949de92859bc358ee0adcc (patch) | |
| tree | af933c37720c0c68f4911b73fb22e289da990682 /src/lib/image_content.cc | |
| parent | dfce73ef2de0d912507a0d7819f8b469202852f5 (diff) | |
No-op; variable renaming.
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index c0004e59c..3f62c3ebf 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -35,9 +35,9 @@ using std::string; using std::cout; using boost::shared_ptr; -ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p) - : Content (f) - , VideoContent (f) +ImageContent::ImageContent (shared_ptr<const Film> film, boost::filesystem::path p) + : Content (film) + , VideoContent (film) { bool have_j2k = false; if (boost::filesystem::is_regular_file (p) && valid_image_file (p)) { @@ -69,9 +69,9 @@ ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p) } -ImageContent::ImageContent (shared_ptr<const Film> f, cxml::ConstNodePtr node, int version) - : Content (f, node) - , VideoContent (f, node, version) +ImageContent::ImageContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version) + : Content (film, node) + , VideoContent (film, node, version) { } |
