mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Use XMLNode::set_property API in all Panner classes
This commit is contained in:
parent
f9af328bca
commit
a59288a1f2
4 changed files with 8 additions and 8 deletions
|
|
@ -366,9 +366,9 @@ XMLNode&
|
|||
VBAPanner::get_state ()
|
||||
{
|
||||
XMLNode& node (Panner::get_state());
|
||||
node.add_property (X_("uri"), _descriptor.panner_uri);
|
||||
node.set_property (X_("uri"), _descriptor.panner_uri);
|
||||
/* this is needed to allow new sessions to load with old Ardour: */
|
||||
node.add_property (X_("type"), _descriptor.name);
|
||||
node.set_property (X_("type"), _descriptor.name);
|
||||
return node;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue