summaryrefslogtreecommitdiffstats
path: root/src/serialisation/Serialiser.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-22 21:04:58 +0000
committerDavid Robillard <d@drobilla.net>2012-04-22 21:04:58 +0000
commitc9719b15e029c346122c6b94482513c35dc4c480 (patch)
treec56d4805503d8b75290e167e5359ff9aedfef0c2 /src/serialisation/Serialiser.cpp
parent7d1e0fbf4eb593e569f2e0bae46b4c0555d70d02 (diff)
downloadingen-c9719b15e029c346122c6b94482513c35dc4c480.tar.gz
ingen-c9719b15e029c346122c6b94482513c35dc4c480.tar.bz2
ingen-c9719b15e029c346122c6b94482513c35dc4c480.zip
"Connection" => "Edge" and related terminology stuff.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4240 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/Serialiser.cpp')
-rw-r--r--src/serialisation/Serialiser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/serialisation/Serialiser.cpp b/src/serialisation/Serialiser.cpp
index 8225009e..f0062860 100644
--- a/src/serialisation/Serialiser.cpp
+++ b/src/serialisation/Serialiser.cpp
@@ -518,14 +518,14 @@ Serialiser::Impl::serialise_connection(const Sord::Node& parent,
const Sord::Node dst = path_rdf_node(connection->dst_port_path());
const Sord::Node connection_id = Sord::Node::blank_id(*_world.rdf_world());
_model->add_statement(connection_id,
- Sord::Curie(world, "ingen:source"),
+ Sord::Curie(world, "ingen:tail"),
src);
_model->add_statement(connection_id,
- Sord::Curie(world, "ingen:destination"),
+ Sord::Curie(world, "ingen:head"),
dst);
_model->add_statement(parent,
- Sord::Curie(world, "ingen:connection"),
+ Sord::Curie(world, "ingen:edge"),
connection_id);
}