diff options
author | David Robillard <d@drobilla.net> | 2012-08-12 23:42:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-12 23:42:17 +0000 |
commit | efe8e2311ee2fed881f95cc1e72825906d21c7c1 (patch) | |
tree | 371c03610f691f0b97137b9e5b2f756b21fc5583 /src/server/events/Connect.cpp | |
parent | e63caf72f320ab683de6378ff6f2944890054cbf (diff) | |
download | ingen-efe8e2311ee2fed881f95cc1e72825906d21c7c1.tar.gz ingen-efe8e2311ee2fed881f95cc1e72825906d21c7c1.tar.bz2 ingen-efe8e2311ee2fed881f95cc1e72825906d21c7c1.zip |
Use ingen:root as the path for the root patch, opening up path space for engine/driver/etc.
Strict conversion between Path and URI (Path no longer is-a URI).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4672 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/events/Connect.cpp')
-rw-r--r-- | src/server/events/Connect.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/events/Connect.cpp b/src/server/events/Connect.cpp index 39252a13..17b66192 100644 --- a/src/server/events/Connect.cpp +++ b/src/server/events/Connect.cpp @@ -57,27 +57,27 @@ Connect::pre_process() PortImpl* tail = _engine.engine_store()->find_port(_tail_path); PortImpl* head = _engine.engine_store()->find_port(_head_path); if (!tail) { - return Event::pre_process_done(PORT_NOT_FOUND, _tail_path.str()); + return Event::pre_process_done(PORT_NOT_FOUND, _tail_path); } else if (!head) { - return Event::pre_process_done(PORT_NOT_FOUND, _head_path.str()); + return Event::pre_process_done(PORT_NOT_FOUND, _head_path); } OutputPort* tail_output = dynamic_cast<OutputPort*>(tail); _head = dynamic_cast<InputPort*>(head); if (!tail_output || !_head) { - return Event::pre_process_done(DIRECTION_MISMATCH, _head_path.str()); + return Event::pre_process_done(DIRECTION_MISMATCH, _head_path); } NodeImpl* const tail_node = tail->parent_node(); NodeImpl* const head_node = head->parent_node(); if (!tail_node || !head_node) { - return Event::pre_process_done(PARENT_NOT_FOUND, _head_path.str()); + return Event::pre_process_done(PARENT_NOT_FOUND, _head_path); } if (tail_node->parent() != head_node->parent() && tail_node != head_node->parent() && tail_node->parent() != head_node) { - return Event::pre_process_done(PARENT_DIFFERS, _head_path.str()); + return Event::pre_process_done(PARENT_DIFFERS, _head_path); } if (!EdgeImpl::can_connect(tail_output, _head)) { |