diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-31 21:02:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-07 17:01:06 +0200 |
| commit | 2975fa5cd5dcfaa806b07ef39c8900e07f417658 (patch) | |
| tree | fdf2b84ad053a61882afec14a6fbd16fbd1a4493 /src/lib/content_text.h | |
| parent | 9b92e596727bcbab5df68ed72ddf59702a4a9702 (diff) | |
Switch some list -> vector for consistency.
Diffstat (limited to 'src/lib/content_text.h')
| -rw-r--r-- | src/lib/content_text.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/content_text.h b/src/lib/content_text.h index d32e880ee..cd9d34bf9 100644 --- a/src/lib/content_text.h +++ b/src/lib/content_text.h @@ -28,7 +28,7 @@ #include "rect.h" #include "types.h" #include <dcp/subtitle_string.h> -#include <list> +#include <vector> class Image; @@ -74,12 +74,12 @@ public: class ContentStringText : public ContentText { public: - ContentStringText (dcpomatic::ContentTime f, std::list<dcp::SubtitleString> s) + ContentStringText (dcpomatic::ContentTime f, std::vector<dcp::SubtitleString> s) : ContentText (f) , subs (s) {} - std::list<dcp::SubtitleString> subs; + std::vector<dcp::SubtitleString> subs; }; |
