diff options
Diffstat (limited to 'src/libs/engine/events/ConnectionEvent.cpp')
-rw-r--r-- | src/libs/engine/events/ConnectionEvent.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/events/ConnectionEvent.cpp b/src/libs/engine/events/ConnectionEvent.cpp index fef7892b..c0dcc18c 100644 --- a/src/libs/engine/events/ConnectionEvent.cpp +++ b/src/libs/engine/events/ConnectionEvent.cpp @@ -214,14 +214,14 @@ TypedConnectionEvent<T>::pre_process() } _connection = new TypedConnection<T>(_src_port, _dst_port); - _port_listnode = new ListNode<TypedConnection<T>*>(_connection); - _patch_listnode = new ListNode<Connection*>(_connection); + _port_listnode = new Raul::ListNode<TypedConnection<T>*>(_connection); + _patch_listnode = new Raul::ListNode<Connection*>(_connection); // Need to be careful about patch port connections here and adding a node's // parent as a dependant/provider, or adding a patch as it's own provider... if (src_node != dst_node && src_node->parent() == dst_node->parent()) { - dst_node->providers()->push_back(new ListNode<Node*>(src_node)); - src_node->dependants()->push_back(new ListNode<Node*>(dst_node)); + dst_node->providers()->push_back(new Raul::ListNode<Node*>(src_node)); + src_node->dependants()->push_back(new Raul::ListNode<Node*>(dst_node)); } if (_patch->enabled()) |