summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/ConnectionEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/ConnectionEvent.cpp')
-rw-r--r--src/libs/engine/events/ConnectionEvent.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/events/ConnectionEvent.cpp b/src/libs/engine/events/ConnectionEvent.cpp
index 7f8fa18e..733a46d4 100644
--- a/src/libs/engine/events/ConnectionEvent.cpp
+++ b/src/libs/engine/events/ConnectionEvent.cpp
@@ -22,7 +22,7 @@
#include "Responder.hpp"
#include "types.hpp"
#include "Engine.hpp"
-#include "Connection.hpp"
+#include "ConnectionImpl.hpp"
#include "InputPort.hpp"
#include "OutputPort.hpp"
#include "Patch.hpp"
@@ -126,9 +126,9 @@ ConnectionEvent::pre_process()
return;
}
- _connection = new Connection(_src_port, _dst_port);
- _port_listnode = new Raul::ListNode<Connection*>(_connection);
- _patch_listnode = new Raul::ListNode<Connection*>(_connection);
+ _connection = new ConnectionImpl(_src_port, _dst_port);
+ _port_listnode = new Raul::ListNode<ConnectionImpl*>(_connection);
+ _patch_listnode = new Raul::ListNode<ConnectionImpl*>(_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...