diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-04-30 16:04:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-08 23:25:22 +0100 |
| commit | d27ef92ec050a0d995a7eaeb534ed8016b1ca39b (patch) | |
| tree | c889dd3f4a0aecbdbbd77e462fa27be99b567c29 | |
| parent | 403ebc202f09d41620eecfb4f6ef25e791e20bf4 (diff) | |
Build fixes.
| -rw-r--r-- | src/lib/film.cc | 1 | ||||
| -rw-r--r-- | src/wx/qube_certificate_panel.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index aaa2627e1..dee3196c5 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -547,6 +547,7 @@ Film::read_metadata (optional<boost::filesystem::path> path) _ratings.push_back (dcp::Rating(i)); } + list<string> notes; _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"), _state_version, notes); /* Write backtraces to this film's directory, until another film is loaded */ diff --git a/src/wx/qube_certificate_panel.cc b/src/wx/qube_certificate_panel.cc index f6e304955..de2ece889 100644 --- a/src/wx/qube_certificate_panel.cc +++ b/src/wx/qube_certificate_panel.cc @@ -63,7 +63,7 @@ QubeCertificatePanel::do_download () return; } - optional<string> error = get_from_url (String::compose("%1SMPTE-%2/%3", base, _type, *name), true, boost::bind (&DownloadCertificatePanel::load, this, _1)); + optional<string> error = get_from_url (String::compose("%1SMPTE-%2/%3", base, _type, *name), true, false, boost::bind(&DownloadCertificatePanel::load, this, _1)); if (error) { _dialog->message()->SetLabel(wxT("")); |
