summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-03-20 09:48:13 +0000
committerCarl Hetherington <cth@carlh.net>2018-03-20 09:48:13 +0000
commitb294c3a3d248e53af2c9b6ef02722cc1e12584d8 (patch)
tree26fc831bfcbf7ff0da425591855966dd38b1318b
parent9f74e70740d585632279fd2155405637e02d1e0e (diff)
Fix build for newer libdcp.
-rw-r--r--src/wx/verify_dcp_dialog.cc12
1 files changed, 6 insertions, 6 deletions
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<dcp::VerificationNote>
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<dcp::VerificationNote>
_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;
}