summaryrefslogtreecommitdiff
path: root/src/wx/verify_dcp_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-27 14:46:23 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-27 14:46:23 +0200
commit054c8250b5157ce3b080c359c4ec3d1593f6b5c6 (patch)
tree6efd804acd8405ed36e5db138418bd52feec2947 /src/wx/verify_dcp_dialog.cc
parentbb89ec4a3d7a912f1f79e8b13ec9f1be5481ca96 (diff)
Fix missing verification note.v2.15.152
Diffstat (limited to 'src/wx/verify_dcp_dialog.cc')
-rw-r--r--src/wx/verify_dcp_dialog.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc
index 595ef18d6..9b6a8c949 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -359,6 +359,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
add(i, wxString::Format(_("The reel duration (%s) of some timed text is not the same as the ContainerDuration (%s) of its MXF."), std_to_wx(parts[0]), std_to_wx(parts[1])));
break;
}
+ case dcp::VerificationNote::Code::MISSED_CHECK_OF_ENCRYPTED:
+ add(i, _("Part of the DCP could not be checked because no KDM was available"));
+ break;
}
}