summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-29 16:29:34 +0100
committerCarl Hetherington <cth@carlh.net>2016-07-29 16:29:34 +0100
commitf4964573a60155545e02cbbebc47199f7480cf14 (patch)
tree6fd65f01a844fdd839722bc5957425293b5ed29a /src/lib/config.cc
parentfbe2784c136fa1550815babfce89589f66b35a29 (diff)
Rename KDMNameFormat.
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index b456c605c..d332c805a 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -30,7 +30,7 @@
#include "util.h"
#include "cross.h"
#include "raw_convert.h"
-#include "kdm_name_format.h"
+#include "kdm_filename_format.h"
#include <dcp/filename_format.h>
#include <dcp/colour_matrix.h>
#include <dcp/certificate_chain.h>
@@ -110,7 +110,7 @@ Config::set_defaults ()
#endif
_cinemas_file = path ("cinemas.xml");
_show_hints_before_make_dcp = true;
- _kdm_filename_format = KDMNameFormat ("KDM %f %c %s");
+ _kdm_filename_format = KDMFilenameFormat ("KDM %f %c %s");
_dcp_filename_format = dcp::FilenameFormat ("%t_%i");
_allowed_dcp_frame_rates.clear ();
@@ -294,7 +294,7 @@ try
_cinemas_file = f.optional_string_child("CinemasFile").get_value_or (path ("cinemas.xml").string ());
_show_hints_before_make_dcp = f.optional_bool_child("ShowHintsBeforeMakeDCP").get_value_or (true);
- _kdm_filename_format = KDMNameFormat (f.optional_string_child("KDMFilenameFormat").get_value_or ("KDM %f %c %s"));
+ _kdm_filename_format = KDMFilenameFormat (f.optional_string_child("KDMFilenameFormat").get_value_or ("KDM %f %c %s"));
_dcp_filename_format = dcp::FilenameFormat (f.optional_string_child("DCPFilenameFormat").get_value_or ("%t_%i.mxf"));
/* Replace any cinemas from config.xml with those from the configured file */