Use ID::to_s() in libardour instead of ID::print()

This commit is contained in:
Tim Mayberry 2016-08-19 21:40:53 +10:00
parent 4dd0203f01
commit 334ec95e43
13 changed files with 17 additions and 38 deletions

View file

@ -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");