mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Use XMLNode::set_property API in GUIObject class
This commit is contained in:
parent
0bfdab738b
commit
8d90723e8c
2 changed files with 3 additions and 5 deletions
|
|
@ -46,7 +46,7 @@ GUIObjectState::get_or_add_node (XMLNode* parent, const string& id)
|
|||
XMLNode* child = get_node (parent, id);
|
||||
if (!child) {
|
||||
child = new XMLNode (X_("Object"));
|
||||
child->add_property (X_("id"), id);
|
||||
child->set_property (X_("id"), id);
|
||||
parent->add_child_nocopy (*child);
|
||||
}
|
||||
return child;
|
||||
|
|
@ -69,7 +69,7 @@ GUIObjectState::get_or_add_node (const string& id)
|
|||
}
|
||||
//assert (get_node (&_state, id) == 0); // XXX performance penalty due to get_node()
|
||||
XMLNode* child = new XMLNode (X_("Object"));
|
||||
child->add_property (X_("id"), id);
|
||||
child->set_property (X_("id"), id);
|
||||
_state.add_child_nocopy (*child);
|
||||
object_map[id] = child;
|
||||
return child;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue