From: Carl Hetherington Date: Mon, 1 Nov 2021 15:43:41 +0000 (+0100) Subject: Rename email() -> send_emails(). X-Git-Tag: v2.15.183~12 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=81083e235419587b9dd79278cd987121fe87f324 Rename email() -> send_emails(). --- diff --git a/src/lib/kdm_with_metadata.cc b/src/lib/kdm_with_metadata.cc index 7927b9370..a486952f8 100644 --- a/src/lib/kdm_with_metadata.cc +++ b/src/lib/kdm_with_metadata.cc @@ -195,7 +195,7 @@ write_zip_files ( * @param cpl_name Name of the CPL that the KDMs are for. */ void -email ( +send_emails ( list> kdms, dcp::NameFormat container_name_format, dcp::NameFormat filename_format, diff --git a/src/lib/kdm_with_metadata.h b/src/lib/kdm_with_metadata.h index 3e0b7e554..6c961768a 100644 --- a/src/lib/kdm_with_metadata.h +++ b/src/lib/kdm_with_metadata.h @@ -103,7 +103,7 @@ int write_zip_files ( ); -void email ( +void send_emails ( std::list> kdms, dcp::NameFormat container_name_format, dcp::NameFormat filename_format, diff --git a/src/lib/send_kdm_email_job.cc b/src/lib/send_kdm_email_job.cc index 67ddd0eef..fee7e9d31 100644 --- a/src/lib/send_kdm_email_job.cc +++ b/src/lib/send_kdm_email_job.cc @@ -104,7 +104,7 @@ void SendKDMEmailJob::run () { set_progress_unknown (); - email (_kdms, _container_name_format, _filename_format, _cpl_name); + send_emails (_kdms, _container_name_format, _filename_format, _cpl_name); set_progress (1); set_state (FINISHED_OK); }