summaryrefslogtreecommitdiff
path: root/libs/evoral/src/Sequence.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-20 23:58:09 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-20 23:58:09 +0000
commitcdb3ade9ffb853c4c43f2d5d54f7d06bb2685480 (patch)
tree378b0584183e481f1f8fba81256107cfe1fdf4aa /libs/evoral/src/Sequence.cpp
parentfac369084222360526fc86f0c72be87b574abc7d (diff)
Fix automation re-load.
git-svn-id: svn://localhost/ardour2/branches/3.0@7664 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/src/Sequence.cpp')
-rw-r--r--libs/evoral/src/Sequence.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/src/Sequence.cpp b/libs/evoral/src/Sequence.cpp
index 96e9211217..8815071433 100644
--- a/libs/evoral/src/Sequence.cpp
+++ b/libs/evoral/src/Sequence.cpp
@@ -822,7 +822,7 @@ Sequence<Time>::append_control_unlocked(const Parameter& param, Time time, doubl
DEBUG_TRACE (DEBUG::Sequence, string_compose ("%1 %2 @ %3\t=\t%4 # controls: %5\n",
this, _type_map.to_symbol(param), time, value, _controls.size()));
boost::shared_ptr<Control> c = control(param, true);
- c->list()->rt_add(time, value);
+ c->list()->add (time, value);
/* XXX control events should use IDs */
}