summaryrefslogtreecommitdiff
path: root/src/lib/content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-22 20:33:34 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-18 00:41:34 +0100
commit0f9dc78d7da4f96dbbfbd692c19f74de72098351 (patch)
treec6ad4ceee12d3ed675b19e6d3a5aee55213289cd /src/lib/content.h
parent9f646cd41ced9bf6f2e6fd735f92fae3aff1d6db (diff)
Cleanup: swap a list for a vector.
Diffstat (limited to 'src/lib/content.h')
-rw-r--r--src/lib/content.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content.h b/src/lib/content.h
index 979680d6a..0ce87ed9b 100644
--- a/src/lib/content.h
+++ b/src/lib/content.h
@@ -208,7 +208,7 @@ public:
std::shared_ptr<VideoContent> video;
std::shared_ptr<AudioContent> audio;
- std::list<std::shared_ptr<TextContent>> text;
+ std::vector<std::shared_ptr<TextContent>> text;
std::shared_ptr<AtmosContent> atmos;
std::shared_ptr<TextContent> only_text () const;