summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
commit5b0e331380c83ec9835e8aa42fd342b2f0ad275d (patch)
tree13c27f0b3420f5c3a268a5a22a9172675fdc370c /src/lib/content.cc
parent5d838bc863a7569e68546026c109607fd5a94362 (diff)
Use dcp::compose rather than our own.compose
Diffstat (limited to 'src/lib/content.cc')
-rw-r--r--src/lib/content.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc
index 49ab944be..d2d8208de 100644
--- a/src/lib/content.cc
+++ b/src/lib/content.cc
@@ -34,7 +34,7 @@
#include "exceptions.h"
#include "film.h"
#include "job.h"
-#include "compose.hpp"
+#include <dcp/compose.h>
#include <dcp/locale_convert.h>
#include <dcp/raw_convert.h>
#include <libcxml/cxml.h>
@@ -304,9 +304,9 @@ Content::clone () const
string
Content::technical_summary () const
{
- auto s = String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds());
+ auto s = dcp::compose ("%1 %2 %3", path_summary(), digest(), position().seconds());
if (_video_frame_rate) {
- s += String::compose(" %1", *_video_frame_rate);
+ s += dcp::compose(" %1", *_video_frame_rate);
}
return s;
}