summaryrefslogtreecommitdiff
path: root/libs/ardour/internal_return.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2016-08-28 10:44:56 +1000
committerTim Mayberry <mojofunk@gmail.com>2017-04-19 09:36:51 +1000
commit9915af58e0bd9caa1dcc9b747ddf79ad577f7e2d (patch)
tree24fbe1d0679f6f4e60777f22b945f508d4a07193 /libs/ardour/internal_return.cc
parent34ee50d1718bf8174f6fa74b87ffcbb6e376aa7a (diff)
Use XMLNode::set_property in ARDOUR::InternalReturn class
Diffstat (limited to 'libs/ardour/internal_return.cc')
-rw-r--r--libs/ardour/internal_return.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/internal_return.cc b/libs/ardour/internal_return.cc
index e42c067454..28089feef4 100644
--- a/libs/ardour/internal_return.cc
+++ b/libs/ardour/internal_return.cc
@@ -70,7 +70,7 @@ InternalReturn::state (bool full)
{
XMLNode& node (Return::state (full));
/* override type */
- node.add_property("type", "intreturn");
+ node.set_property("type", "intreturn");
return node;
}