diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-24 01:27:14 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-24 01:27:14 +0200 |
| commit | 2c4e4c17fcf4100651cd04692557a35d15198718 (patch) | |
| tree | 4b941ce215b7739c1c48b6ff2d58ddcd10cb299c | |
| parent | a5a3624943ccb9769d363a84797e00cf24bbf958 (diff) | |
Missing new verification error.
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 9417d7934..b55e0d7ba 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -562,6 +562,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::MISSING_CPL_CONTENT_VERSION: add(i.second, _("The CPL %n has no <ContentVersion> tag")); break; + case dcp::VerificationNote::Code::INVALID_PKL_NAMESPACE: + add(i.second, _("The PKL %f has an invalid namespace %n")); + break; } } |
