mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Use XMLNode::set_property API in VideoMonitor class
This commit is contained in:
parent
b00b83f95a
commit
47f1183a15
1 changed files with 2 additions and 2 deletions
|
|
@ -430,8 +430,8 @@ VideoMonitor::save_session ()
|
|||
|
||||
for(XJSettings::const_iterator it = xjadeo_settings.begin(); it != xjadeo_settings.end(); ++it) {
|
||||
XMLNode* child = node->add_child (X_("XJSetting"));
|
||||
child->add_property (X_("k"), it->first);
|
||||
child->add_property (X_("v"), it->second);
|
||||
child->set_property (X_("k"), it->first);
|
||||
child->set_property (X_("v"), it->second);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue