summaryrefslogtreecommitdiff
path: root/src/lib/playlist.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-09 22:53:27 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-10 20:50:32 +0200
commit62c34b28567a097e8f22576e7d7891bd3dbe0ac0 (patch)
tree2a0440ed2bdb58c608582b75da6c877527dd6bda /src/lib/playlist.cc
parent2c499921a9f8615c8368d8161cb43c9a93c67311 (diff)
Replace String::compose with fmt.
sed -i "/Plural-Forms/n;/%100/n;/scanf/n;s/%[123456789]/{}/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/tools/*.cc src/lib/po/*.po src/wx/po/*.po src/tools/po/*.po test/*.cc sed -i "s/String::compose */fmt::format/g" src/lib/*.cc src/lib/*.h src/wx/*.cc src/tools/*.cc test/*.cc
Diffstat (limited to 'src/lib/playlist.cc')
-rw-r--r--src/lib/playlist.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc
index a0d7d6531..f0e4cb50d 100644
--- a/src/lib/playlist.cc
+++ b/src/lib/playlist.cc
@@ -236,13 +236,13 @@ Playlist::set_from_xml (shared_ptr<const Film> film, cxml::ConstNodePtr node, in
string note = _("Your project contains video content that was not aligned to a frame boundary.");
note += " ";
if (old_pos < content->position()) {
- note += String::compose(
- _("The file %1 has been moved %2 milliseconds later."),
+ note += fmt::format(
+ _("The file {} has been moved {} milliseconds later."),
content->path_summary(), DCPTime(content->position() - old_pos).seconds() * 1000
);
} else {
- note += String::compose(
- _("The file %1 has been moved %2 milliseconds earlier."),
+ note += fmt::format(
+ _("The file {} has been moved {} milliseconds earlier."),
content->path_summary(), DCPTime(content->position() - old_pos).seconds() * 1000
);
}
@@ -256,13 +256,13 @@ Playlist::set_from_xml (shared_ptr<const Film> film, cxml::ConstNodePtr node, in
string note = _("Your project contains video content whose trim was not aligned to a frame boundary.");
note += " ";
if (old_trim < content->trim_start()) {
- note += String::compose(
- _("The file %1 has been trimmed by %2 milliseconds more."),
+ note += fmt::format(
+ _("The file {} has been trimmed by {} milliseconds more."),
content->path_summary(), ContentTime(content->trim_start() - old_trim).seconds() * 1000
);
} else {
- note += String::compose(
- _("The file %1 has been trimmed by %2 milliseconds less."),
+ note += fmt::format(
+ _("The file {} has been trimmed by {} milliseconds less."),
content->path_summary(), ContentTime(old_trim - content->trim_start()).seconds() * 1000
);
}