Cleanup: replace some list with vector.
[dcpomatic.git] / src / lib / verify_dcp_job.cc
index 1b30b2112d6395329ab640cdebcb02356d6768a2..e054fae3a8774e81594b1474b04966e3ffb11ef7 100644 (file)
@@ -76,7 +76,7 @@ VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path)
 void
 VerifyDCPJob::run ()
 {
-       _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), xsd_path());
+       _notes = dcp::verify(_directories, bind(&VerifyDCPJob::update_stage, this, _1, _2), bind(&VerifyDCPJob::set_progress, this, _1, false), {}, libdcp_resources_path() / "xsd");
 
        bool failed = false;
        for (auto i: _notes) {