No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / send_kdm_email_job.cc
index 8af0b556a13e7f1a5ceffcc066e9c02d0038c04d..cddf424f4a4d8aec0a20de8af2828c64995fc281 100644 (file)
@@ -29,17 +29,19 @@ using std::list;
 using boost::shared_ptr;
 
 SendKDMEmailJob::SendKDMEmailJob (
-       shared_ptr<const Film> f,
+       shared_ptr<const Film> film,
        list<shared_ptr<Screen> > screens,
        boost::filesystem::path dcp,
        boost::posix_time::ptime from,
-       boost::posix_time::ptime to
+       boost::posix_time::ptime to,
+       dcp::Formulation formulation
        )
-       : Job (f)
+       : Job (film)
        , _screens (screens)
        , _dcp (dcp)
        , _from (from)
        , _to (to)
+       , _formulation (formulation)
 {
 
 }
@@ -60,12 +62,12 @@ void
 SendKDMEmailJob::run ()
 {
        try {
-               
+
                set_progress_unknown ();
-               email_kdms (_film, _screens, _dcp, _from, _to);
+               email_kdms (_film, _screens, _dcp, _from, _to, _formulation);
                set_progress (1);
                set_state (FINISHED_OK);
-               
+
        } catch (std::exception& e) {
 
                set_progress (1);