summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-08-01 14:43:12 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-08-01 14:43:12 -0400
commit682ebad62bdc85df151ad0b81dc27cc9f3e71cec (patch)
tree3e283d18fa8609a1f98502a038b9388f8404285a /libs/ardour/route.cc
parent18c68bfd12130b8a3e95c99d3c0472c8b7f377bc (diff)
full compilation and linking (coding not finished, will not run)
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index c2965a4617..eabfbaacc0 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -967,7 +967,7 @@ Route::add_processor (boost::shared_ptr<Processor> processor, boost::shared_ptr<
DEBUG_TRACE (DEBUG::Processors, string_compose (
"%1 adding processor %2\n", name(), processor->name()));
- if (!AudioEngine::instance()->port_engine().connected() || !processor) {
+ if (!AudioEngine::instance()->connected() || !processor) {
return 1;
}
@@ -1132,7 +1132,7 @@ Route::add_processors (const ProcessorList& others, boost::shared_ptr<Processor>
loc = _processors.end ();
}
- if (!_session.engine().port_engine().connected()) {
+ if (!_session.engine().connected()) {
return 1;
}
@@ -1329,7 +1329,7 @@ Route::ab_plugins (bool forward)
void
Route::clear_processors (Placement p)
{
- if (!_session.engine().port_engine().connected()) {
+ if (!_session.engine().connected()) {
return;
}
@@ -1416,7 +1416,7 @@ Route::remove_processor (boost::shared_ptr<Processor> processor, ProcessorStream
return 0;
}
- if (!_session.engine().port_engine().connected()) {
+ if (!_session.engine().connected()) {
return 1;
}
@@ -1508,7 +1508,7 @@ Route::remove_processors (const ProcessorList& to_be_deleted, ProcessorStreams*
{
ProcessorList deleted;
- if (!_session.engine().port_engine().connected()) {
+ if (!_session.engine().connected()) {
return 1;
}