summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
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;
}