mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
Use ID::to_s() in libardour instead of ID::print()
This commit is contained in:
parent
4dd0203f01
commit
334ec95e43
13 changed files with 17 additions and 38 deletions
|
|
@ -113,8 +113,7 @@ Processor::state (bool full_state)
|
|||
XMLNode* node = new XMLNode (state_node_name);
|
||||
char buf[64];
|
||||
|
||||
id().print (buf, sizeof (buf));
|
||||
node->add_property("id", buf);
|
||||
node->add_property("id", id().to_s ());
|
||||
node->add_property("name", _name);
|
||||
node->add_property("active", active() ? "yes" : "no");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue