diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-09 23:36:58 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-09 23:36:58 +0200 |
| commit | 530e62b470df2a0ab9b6173f18d87ae85c499234 (patch) | |
| tree | 8c64badb6eac115f0838ea6d30b66ed1775b0e27 | |
| parent | 9625bcb0a56b864efaf3773cd20446b4091c5778 (diff) | |
Cleanup: text is a vector now.
| -rw-r--r-- | src/lib/dcp_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 5fb532d03..bbe90d1a4 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -852,7 +852,7 @@ DCPContent::check_font_ids() } DCPExaminer examiner(shared_from_this(), true); - examiner.add_fonts(text.front()); + examiner.add_fonts(text[0]); } |
