From 066c38eb3f0f5815037638b0bc56bf19a40e2830 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 23 Nov 2006 02:17:00 +0000 Subject: Updated for Jack MIDI API git-svn-id: http://svn.drobilla.net/lad/ingen@203 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/Serializer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/client') diff --git a/src/libs/client/Serializer.cpp b/src/libs/client/Serializer.cpp index 48d49b97..9cf7828a 100644 --- a/src/libs/client/Serializer.cpp +++ b/src/libs/client/Serializer.cpp @@ -415,8 +415,8 @@ Serializer::serialize_connection(SharedPtr connection) throw (s { assert(_serializer); - const string node_id = connection->src_port_path().parent().name() + connection->src_port_path().name() - + connection->dst_port_path().parent().name() + connection->dst_port_path().name(); + // (Double slash intentional) + const string node_id = connection->src_port_path() + "/" + connection->dst_port_path(); //raptor_identifier* c = raptor_new_identifier(RAPTOR_IDENTIFIER_TYPE_ANONYMOUS, // NULL, RAPTOR_URI_SOURCE_BLANK_ID, (const unsigned char*)"genid1", NULL, NULL, NULL); -- cgit v1.2.1