summaryrefslogtreecommitdiff
path: root/src/cpl.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-17 17:42:51 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-17 17:42:51 +0000
commit44791cafb91bfe1ee5c0a530c83d9f44b4d2f88f (patch)
treecd52e56f325b204035cd53639581228a6be38399 /src/cpl.cc
parent77726c718ccce4af4bc82c3695a13cea859df874 (diff)
Asset -> ContentAsset.
Diffstat (limited to 'src/cpl.cc')
-rw-r--r--src/cpl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpl.cc b/src/cpl.cc
index 2058223c..ec5534e0 100644
--- a/src/cpl.cc
+++ b/src/cpl.cc
@@ -252,10 +252,10 @@ CPL::write_to_pkl (xmlpp::Node* node) const
asset->add_child("Type")->add_child_text ("text/xml");
}
-list<shared_ptr<const Asset> >
+list<shared_ptr<const ContentAsset> >
CPL::assets () const
{
- list<shared_ptr<const Asset> > a;
+ list<shared_ptr<const ContentAsset> > a;
for (list<shared_ptr<Reel> >::const_iterator i = _reels.begin(); i != _reels.end(); ++i) {
if ((*i)->main_picture ()) {
a.push_back ((*i)->main_picture ());