diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-28 22:59:41 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-08-17 12:57:31 +0200 |
| commit | 54b46b7630c06044a121d70d9035384126f6e7b3 (patch) | |
| tree | 916bd20c307e744787b9fe215a96fae9fdee6e7d /src/reel_asset.cc | |
| parent | a5adc9221d0af15f345cd3dbc76f37ee47fe65d5 (diff) | |
Cleanup: remove unused parameter.
Diffstat (limited to 'src/reel_asset.cc')
| -rw-r--r-- | src/reel_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_asset.cc b/src/reel_asset.cc index c782cf2b..1d3d1d1f 100644 --- a/src/reel_asset.cc +++ b/src/reel_asset.cc @@ -87,7 +87,7 @@ ReelAsset::ReelAsset (shared_ptr<const cxml::Node> node) xmlpp::Element* ReelAsset::write_to_cpl(xmlpp::Element* node, Standard standard) const { - auto a = cxml::add_child(node, cpl_node_name(standard)); + auto a = cxml::add_child(node, cpl_node_name()); auto const attr = cpl_node_attribute (standard); if (!attr.first.empty ()) { a->set_attribute (attr.first, attr.second); @@ -138,7 +138,7 @@ optional_to_string (optional<T> o) bool ReelAsset::asset_equals(shared_ptr<const ReelAsset> other, EqualityOptions const& opt, NoteHandler note) const { - auto const node = cpl_node_name(Standard::SMPTE); + auto const node = cpl_node_name(); if (_annotation_text != other->_annotation_text) { string const s = String::compose("Reel %1: annotation texts differ (%2 vs %3)", node, optional_to_string(_annotation_text), optional_to_string(other->_annotation_text)); |
