From 0b4bffff846efe967110477797218c170ffb3166 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 14 Aug 2024 00:12:22 +0200 Subject: Add option to use relative content paths (#2856). --- src/lib/string_text_file_content.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/string_text_file_content.cc') diff --git a/src/lib/string_text_file_content.cc b/src/lib/string_text_file_content.cc index c6639936c..6ae9fc627 100644 --- a/src/lib/string_text_file_content.cc +++ b/src/lib/string_text_file_content.cc @@ -122,10 +122,10 @@ StringTextFileContent::technical_summary () const void -StringTextFileContent::as_xml(xmlpp::Element* element, bool with_paths) const +StringTextFileContent::as_xml(xmlpp::Element* element, bool with_paths, PathBehaviour path_behaviour, optional film_directory) const { cxml::add_text_child(element, "Type", "TextSubtitle"); - Content::as_xml(element, with_paths); + Content::as_xml(element, with_paths, path_behaviour, film_directory); if (only_text()) { only_text()->as_xml(element); -- cgit v1.2.3