diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-06-19 13:14:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-06-19 13:15:34 +0200 |
| commit | 5665c52ad16aaba050c34b8b391a3212e8cf85a8 (patch) | |
| tree | 64e871b7fc816742bb244fc893968ef851cca852 /src/reel_sound_asset.cc | |
| parent | 8f651dd82eb2724b776a67cee5b04af78783b546 (diff) | |
Rename write_to_cpl_base -> write_to_cpl_asset.
Diffstat (limited to 'src/reel_sound_asset.cc')
| -rw-r--r-- | src/reel_sound_asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reel_sound_asset.cc b/src/reel_sound_asset.cc index 25259f42..4073472e 100644 --- a/src/reel_sound_asset.cc +++ b/src/reel_sound_asset.cc @@ -74,7 +74,6 @@ ReelSoundAsset::key_type () const xmlpp::Node * ReelSoundAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const { - xmlpp::Node* asset = write_to_cpl_base (node, standard, hash()); if (key_id ()) { /* Find <Hash> */ @@ -82,6 +81,7 @@ ReelSoundAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const asset->add_child_before(hash, "KeyId")->add_child_text("urn:uuid:" + key_id().get()); } + xmlpp::Node* asset = write_to_cpl_asset (node, standard, hash()); return asset; } |
