From: Carl Hetherington Date: Tue, 20 Mar 2018 09:48:13 +0000 (+0000) Subject: Fix build for newer libdcp. X-Git-Tag: v2.13.1~4^2~3 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=b294c3a3d248e53af2c9b6ef02722cc1e12584d8;p=dcpomatic.git Fix build for newer libdcp. --- diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index b1eea0fd2..00fb3bdd6 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -53,13 +53,13 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, list BOOST_FOREACH (dcp::VerificationNote i, notes) { switch (i.type()) { - case dcp::VerificationNote::NOTE: + case dcp::VerificationNote::VERIFY_NOTE: _text->BeginStandardBullet (N_("standard/circle"), 1, 50); break; - case dcp::VerificationNote::WARNING: + case dcp::VerificationNote::VERIFY_WARNING: _text->BeginStandardBullet (N_("standard/diamond"), 1, 50); break; - case dcp::VerificationNote::ERROR: + case dcp::VerificationNote::VERIFY_NOTE: _text->BeginSymbolBullet (N_("!"), 1, 50); break; } @@ -68,11 +68,11 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, list _text->Newline (); switch (i.type()) { - case dcp::VerificationNote::NOTE: - case dcp::VerificationNote::WARNING: + case dcp::VerificationNote::VERIFY_NOTE: + case dcp::VerificationNote::VERIFY_WARNING: _text->EndStandardBullet (); break; - case dcp::VerificationNote::ERROR: + case dcp::VerificationNote::VERIFY_ERROR: _text->EndSymbolBullet (); break; }