summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-09-27 11:45:00 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-27 11:45:00 +0200
commit0771af91ad52ed2e25ab89410eb6e783b50f7329 (patch)
treef514e6618e9012c307188a11a9d2a2ade2e04d19 /src
parentccacce39c39d16977ab6c1592fcb6e941b05ddff (diff)
Remove unused method.own-config
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.cc19
-rw-r--r--src/lib/config.h2
2 files changed, 0 insertions, 21 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 4aa4788bf..4924d13ba 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -1254,25 +1254,6 @@ Config::read_dkdm_recipients (cxml::Document const & f)
}
}
-void
-Config::set_dkdm_recipients_file (boost::filesystem::path file)
-{
- if (file == _dkdm_recipients_file) {
- return;
- }
-
- _dkdm_recipients_file = file;
-
- if (boost::filesystem::exists (_dkdm_recipients_file)) {
- /* Existing file; read it in */
- cxml::Document f ("DKDMRecipients");
- f.read_file (_dkdm_recipients_file);
- read_dkdm_recipients (f);
- }
-
- changed (OTHER);
-}
-
void
Config::save_template (shared_ptr<const Film> film, string name) const
diff --git a/src/lib/config.h b/src/lib/config.h
index 5981e7994..c9206b139 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -827,8 +827,6 @@ public:
void set_cinemas_file (boost::filesystem::path file);
- void set_dkdm_recipients_file (boost::filesystem::path file);
-
void set_show_hints_before_make_dcp (bool s) {
maybe_set (_show_hints_before_make_dcp, s);
}