summaryrefslogtreecommitdiffstats
path: root/src/server/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-23 13:56:39 +0000
committerDavid Robillard <d@drobilla.net>2012-03-23 13:56:39 +0000
commit94f372e95ecd718b7d2ed4f2aa1f0437e7968efb (patch)
tree98177dbce2673191181dd12b031ebe555866e846 /src/server/ConnectionImpl.cpp
parentefd0ddb79fbf4b792a9b865afb24a05441ed2bb2 (diff)
downloadingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.tar.gz
ingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.tar.bz2
ingen-94f372e95ecd718b7d2ed4f2aa1f0437e7968efb.zip
Fix compilation with latest LV2.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4102 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ConnectionImpl.cpp')
-rw-r--r--src/server/ConnectionImpl.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/ConnectionImpl.cpp b/src/server/ConnectionImpl.cpp
index 7a4d7dda..7abda828 100644
--- a/src/server/ConnectionImpl.cpp
+++ b/src/server/ConnectionImpl.cpp
@@ -30,6 +30,7 @@
#include "Engine.hpp"
#include "InputPort.hpp"
#include "MessageContext.hpp"
+#include "NodeImpl.hpp"
#include "OutputPort.hpp"
#include "PortImpl.hpp"
#include "ProcessContext.hpp"
@@ -151,7 +152,8 @@ ConnectionImpl::must_mix() const
bool
ConnectionImpl::must_queue() const
{
- return _src_port->context() != _dst_port->context();
+ return _src_port->parent_node()->context()
+ != _dst_port->parent_node()->context();
}
bool