Separate GUI verifier with basic reporting (#1823).
[dcpomatic.git] / src / lib / verify_dcp_job.cc
index 5e50ec51db3bd3873c99de004d7ae6be01e48758..668b1eab49f42dc392fb7285fa70f467004571c3 100644 (file)
@@ -86,7 +86,7 @@ VerifyDCPJob::run ()
                }
        }
 
-       _notes = dcp::verify(
+       _result = dcp::verify(
                _directories,
                decrypted_kdms,
                bind(&VerifyDCPJob::update_stage, this, _1, _2),
@@ -96,7 +96,7 @@ VerifyDCPJob::run ()
                );
 
        bool failed = false;
-       for (auto i: _notes) {
+       for (auto i: _result.notes) {
                if (i.type() == dcp::VerificationNote::Type::ERROR) {
                        failed = true;
                }