diff options
Diffstat (limited to 'src/engine/QueuedEngineInterface.cpp')
-rw-r--r-- | src/engine/QueuedEngineInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp index 4e0e82d1..76866198 100644 --- a/src/engine/QueuedEngineInterface.cpp +++ b/src/engine/QueuedEngineInterface.cpp @@ -148,11 +148,11 @@ QueuedEngineInterface::new_patch(const string& path, // FIXME: use index void QueuedEngineInterface::new_port(const string& path, + const string& type, uint32_t index, - const string& data_type, bool direction) { - push_queued(new CreatePortEvent(_engine, _responder, now(), path, data_type, direction, this)); + push_queued(new CreatePortEvent(_engine, _responder, now(), path, type, direction, this)); } |