diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-15 20:39:47 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-15 20:39:47 +0000 |
| commit | 816b3c2dda2c5e33900f5d90a001284045040b5f (patch) | |
| tree | e6f80be308f26dfdf2bb2e1996755315c075c72f /src/lib/content.cc | |
| parent | c9f11d1367a54313e61abbaef7c075ed336b7f79 (diff) | |
| parent | 5d3ebbb2e7844485e8dddd6471209d56b05633ae (diff) | |
Merge master.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc index 1883dfb4a..829468247 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -195,7 +195,10 @@ Content::clone () const xmlpp::Document doc; xmlpp::Node* node = doc.create_root_node ("Content"); as_xml (node); - return content_factory (film, cxml::NodePtr (new cxml::Node (node)), Film::current_state_version); + + /* notes is unused here (we assume) */ + list<string> notes; + return content_factory (film, cxml::NodePtr (new cxml::Node (node)), Film::current_state_version, notes); } string |
