From: Carl Hetherington Date: Tue, 1 Aug 2017 23:37:54 +0000 (+0100) Subject: Use a default DCP name if none is specified, rather than giving an error. X-Git-Tag: v2.11.17~29 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=40a632c770bfa4e479f7508f88fc91e94da539f8;hp=320999237a1347f984fcf4d5b4c2b0314d59ac14 Use a default DCP name if none is specified, rather than giving an error. --- diff --git a/src/lib/film.cc b/src/lib/film.cc index 3b8199f30..7c9c4e5fb 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -309,7 +309,7 @@ Film::make_dcp () } if (name().empty()) { - _name = "DCP"; + set_name ("DCP"); } BOOST_FOREACH (shared_ptr i, content ()) {