diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-02-12 00:17:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-02-12 00:17:33 +0000 |
| commit | 6f856af55898f94b45e3be28aa4f7c962de8a398 (patch) | |
| tree | 9bceb59ca98d592c886589c5491314530cf06b16 /src/wx/content_menu.cc | |
| parent | 394c8347d54057c8a52dd63704ae2c9791bb30aa (diff) | |
Try to fix some warnings.
Diffstat (limited to 'src/wx/content_menu.cc')
| -rw-r--r-- | src/wx/content_menu.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 19c54abcc..e5cadd794 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -142,11 +142,11 @@ ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList ); item->Check (dcp->cpl() && dcp->cpl() == i->id()); } - } catch (dcp::DCPReadError) { + } catch (dcp::DCPReadError &) { /* The DCP is probably missing */ - } catch (dcp::KDMDecryptionError) { + } catch (dcp::KDMDecryptionError &) { /* We have an incorrect KDM */ - } catch (KDMError) { + } catch (KDMError &) { /* We have an incorrect KDM */ } } else { |
