From 5b0e331380c83ec9835e8aa42fd342b2f0ad275d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 10 Jul 2021 02:02:19 +0200 Subject: Use dcp::compose rather than our own. --- src/lib/frame_rate_change.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/frame_rate_change.cc') diff --git a/src/lib/frame_rate_change.cc b/src/lib/frame_rate_change.cc index a1ff2ae65..0ee4a492e 100644 --- a/src/lib/frame_rate_change.cc +++ b/src/lib/frame_rate_change.cc @@ -23,7 +23,7 @@ #include "types.h" #include "content.h" #include "film.h" -#include "compose.hpp" +#include #include #include "i18n.h" @@ -94,7 +94,7 @@ FrameRateChange::description () const } else if (repeat == 2) { description = _("Each content frame will be doubled in the DCP.\n"); } else if (repeat > 2) { - description = String::compose (_("Each content frame will be repeated %1 more times in the DCP.\n"), repeat - 1); + description = dcp::compose (_("Each content frame will be repeated %1 more times in the DCP.\n"), repeat - 1); } if (change_speed) { -- cgit v1.2.3