summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-22 04:25:07 +0200
committerRobin Gareus <robin@gareus.org>2017-07-22 04:25:07 +0200
commitf756dc69f41c6950f5c573401ebbd767be493f01 (patch)
tree207cc86427977df3c974465c6b7b5dfa9e4d83d5 /libs/ardour/route.cc
parent038c391d55ba3f78080c86ab09c3ad909f1b427b (diff)
NO-OP: Consistent API name
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index ce8477579f..1ef3badc2c 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -4774,7 +4774,7 @@ void
Route::non_realtime_locate (framepos_t pos)
{
if (_pannable) {
- _pannable->transport_located (pos);
+ _pannable->non_realtime_locate (pos);
}
if (_delayline.get()) {
@@ -4786,7 +4786,7 @@ Route::non_realtime_locate (framepos_t pos)
Glib::Threads::RWLock::ReaderLock lm (_processor_lock);
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
- (*i)->transport_located (pos);
+ (*i)->non_realtime_locate (pos);
}
}
_roll_delay = _initial_delay;