diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-06-17 22:35:39 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-03 22:46:34 +0200 |
| commit | d4019480147bd6b478f8b067982c53251e5d6f15 (patch) | |
| tree | 9cf10f9655b7ef332d3362da32eba4000cd1fe4d /src/wx/content_view.h | |
| parent | b4c7d661a2c7b072d18e82129ff0a31a99ba5081 (diff) | |
Add all DCP CPLs to the content list, and write CPL ID to SPLs instead of digest (#3040).
Diffstat (limited to 'src/wx/content_view.h')
| -rw-r--r-- | src/wx/content_view.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/content_view.h b/src/wx/content_view.h index 16ff5c463..703878d46 100644 --- a/src/wx/content_view.h +++ b/src/wx/content_view.h @@ -39,7 +39,8 @@ public: std::shared_ptr<Content> selected () const; void update (); - std::shared_ptr<Content> get (std::string digest) const override; + std::shared_ptr<Content> get_by_digest(std::string digest) const override; + std::shared_ptr<Content> get_by_cpl_id(std::string cpl_id) const override; private: void add (std::shared_ptr<Content> content); |
