diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-19 16:02:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-19 16:02:04 +0000 |
| commit | 8f7efc8c704891a9c5499c17fa89fe84cdf5bde4 (patch) | |
| tree | 15845cd3d461b91b87e44ffeb14e2891d9de728a /src/lib/cinema_kdms.cc | |
| parent | 9394ce6d3b840ec0af141d6435f394a5ad85c2ed (diff) | |
Remove unused parameter.
Diffstat (limited to 'src/lib/cinema_kdms.cc')
| -rw-r--r-- | src/lib/cinema_kdms.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/cinema_kdms.cc b/src/lib/cinema_kdms.cc index 15aaaa731..d95e02854 100644 --- a/src/lib/cinema_kdms.cc +++ b/src/lib/cinema_kdms.cc @@ -119,7 +119,7 @@ CinemaKDMs::write_zip_files (string film_name, list<CinemaKDMs> cinema_kdms, boo /* XXX: should probably get from/to from the KDMs themselves */ void CinemaKDMs::email ( - string film_name, string cpl_name, list<CinemaKDMs> cinema_kdms, dcp::LocalTime from, dcp::LocalTime to, shared_ptr<Job> job, shared_ptr<Log> log + string film_name, string cpl_name, list<CinemaKDMs> cinema_kdms, dcp::LocalTime from, dcp::LocalTime to, shared_ptr<Log> log ) { Config* config = Config::instance (); @@ -163,7 +163,7 @@ CinemaKDMs::email ( string const name = tidy_for_filename(i.cinema->name) + "_" + tidy_for_filename(film_name) + ".zip"; email.add_attachment (zip_file, name, "application/zip"); - email.send (job); + email.send (); if (log) { log->log (email.notes(), LogEntry::TYPE_DEBUG_EMAIL); |
