summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-05 22:02:40 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-05 22:02:40 +0000
commit249ae25148213a2ab5d76980133182e7f2521524 (patch)
tree6d93a7d3b41ea40e369f8edb825390aae9936262 /src/lib/content.cc
parent8b6f0da2060d29b8d71745cf3db5dfe1a3ef1a43 (diff)
s/use_template/take_settings_from/g
Diffstat (limited to 'src/lib/content.cc')
-rw-r--r--src/lib/content.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc
index f12464892..40f74fe9a 100644
--- a/src/lib/content.cc
+++ b/src/lib/content.cc
@@ -409,15 +409,15 @@ Content::add_properties (list<UserProperty>& p) const
}
void
-Content::use_template (shared_ptr<const Content> c)
+Content::take_settings_from (shared_ptr<const Content> c)
{
if (video && c->video) {
- video->use_template (c->video);
+ video->take_settings_from (c->video);
}
if (audio && c->audio) {
- audio->use_template (c->audio);
+ audio->take_settings_from (c->audio);
}
if (subtitle && c->subtitle) {
- subtitle->use_template (c->subtitle);
+ subtitle->take_settings_from (c->subtitle);
}
}