Use XMLNode::set_property in ARDOUR::SideChain class

This commit is contained in:
Tim Mayberry 2016-08-28 21:13:19 +10:00
parent 23d8c41f01
commit 89519d2e37

View file

@ -48,7 +48,7 @@ XMLNode&
SideChain::state (bool full) SideChain::state (bool full)
{ {
XMLNode& node = IOProcessor::state (full); XMLNode& node = IOProcessor::state (full);
node.add_property ("type", "sidechain"); node.set_property ("type", "sidechain");
return node; return node;
} }