From: Carl Hetherington Date: Tue, 21 Aug 2018 11:29:23 +0000 (+0100) Subject: Remove unused method. X-Git-Tag: v2.13.45~35 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=8c61932cc0425a67153fd9e8a34ec585bfa985c1;p=dcpomatic.git Remove unused method. --- diff --git a/src/lib/content.cc b/src/lib/content.cc index 04bdc8126..ee394d8e5 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -308,14 +308,6 @@ Content::paths_valid () const return true; } -void -Content::set_path (boost::filesystem::path path) -{ - ChangeSignaller cc (this, ContentProperty::PATH); - _paths.clear (); - _paths.push_back (path); -} - void Content::set_paths (vector paths) { diff --git a/src/lib/content.h b/src/lib/content.h index d519dc52b..f09097ccf 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -99,7 +99,6 @@ public: boost::shared_ptr clone () const; - void set_path (boost::filesystem::path); void set_paths (std::vector paths); std::string path_summary () const;