summaryrefslogtreecommitdiff
path: root/src/lib/text_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-27 14:47:25 +0100
commitc291a92c51be6ad9ee6c43bd0ec93aec06ac981c (patch)
tree51d23f0b0557ac50355e3a553e4ddfd557947748 /src/lib/text_content.h
parent0d87795d5305db9d75894ba9857662b1c0cfeeb3 (diff)
Cleanup: swap a list for a vector.
Diffstat (limited to 'src/lib/text_content.h')
-rw-r--r--src/lib/text_content.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/text_content.h b/src/lib/text_content.h
index 7c060cd48..4d4bdc507 100644
--- a/src/lib/text_content.h
+++ b/src/lib/text_content.h
@@ -199,7 +199,7 @@ public:
return _language_is_additional;
}
- static std::list<std::shared_ptr<TextContent>> from_xml (Content* parent, cxml::ConstNodePtr, int version, std::list<std::string>& notes);
+ static std::vector<std::shared_ptr<TextContent>> from_xml(Content* parent, cxml::ConstNodePtr, int version, std::list<std::string>& notes);
private:
friend struct ffmpeg_pts_offset_test;