summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/ObjectSender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/ObjectSender.cpp')
-rw-r--r--src/libs/engine/ObjectSender.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/ObjectSender.cpp b/src/libs/engine/ObjectSender.cpp
index 8d8fc769..ce480316 100644
--- a/src/libs/engine/ObjectSender.cpp
+++ b/src/libs/engine/ObjectSender.cpp
@@ -36,7 +36,7 @@ ObjectSender::send_patch(ClientInterface* client, const Patch* patch, bool recur
if (recursive) {
// Send nodes
- for (List<Node*>::const_iterator j = patch->nodes().begin();
+ for (Raul::List<Node*>::const_iterator j = patch->nodes().begin();
j != patch->nodes().end(); ++j) {
const Node* const node = (*j);
@@ -52,7 +52,7 @@ ObjectSender::send_patch(ClientInterface* client, const Patch* patch, bool recur
}
// Send connections
- for (List<Connection*>::const_iterator j = patch->connections().begin();
+ for (Raul::List<Connection*>::const_iterator j = patch->connections().begin();
j != patch->connections().end(); ++j) {
client->connection((*j)->src_port()->path(), (*j)->dst_port()->path());
@@ -97,7 +97,7 @@ ObjectSender::send_node(ClientInterface* client, const Node* node, bool recursiv
// FIXME: bundleify
//client->bundle_begin();
- const Array<Port*>& ports = node->ports();
+ const Raul::Array<Port*>& ports = node->ports();
client->new_node(node->plugin()->uri(), node->path(), polyphonic, ports.size());