diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-09 01:11:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-09 02:41:38 +0100 |
| commit | 7987b15d5555adc506b207f32617798f85315961 (patch) | |
| tree | 20ed24a9846a46dc1739ed0a061d22b0df372a8b /src/wx/kdm_cpl_panel.h | |
| parent | 783991b0f89d948f760829b923490210fb52f56a (diff) | |
Move CPLSummary into a faster version in libdcp.
Diffstat (limited to 'src/wx/kdm_cpl_panel.h')
| -rw-r--r-- | src/wx/kdm_cpl_panel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/kdm_cpl_panel.h b/src/wx/kdm_cpl_panel.h index 91821d7a3..441823afa 100644 --- a/src/wx/kdm_cpl_panel.h +++ b/src/wx/kdm_cpl_panel.h @@ -20,6 +20,7 @@ #include "lib/types.h" +#include <dcp/cpl_summary.h> #include <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS #include <wx/wx.h> @@ -31,7 +32,7 @@ LIBDCP_ENABLE_WARNINGS class KDMCPLPanel : public wxPanel { public: - KDMCPLPanel (wxWindow* parent, std::vector<CPLSummary> cpls); + KDMCPLPanel(wxWindow* parent, std::vector<dcp::CPLSummary> cpls); boost::filesystem::path cpl () const; bool has_selected () const; @@ -49,5 +50,5 @@ private: wxStaticText* _cpl_id; wxStaticText* _cpl_annotation_text; - std::vector<CPLSummary> _cpls; + std::vector<dcp::CPLSummary> _cpls; }; |
