From 79275fc579c0dbe1ce4ca109edb95f2c1e0802a5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Dec 2012 20:34:32 +0000 Subject: "edge" => "arc". git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4897 a436a847-0d15-0410-975c-d299462d15a1 --- src/AtomReader.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/AtomReader.cpp') diff --git a/src/AtomReader.cpp b/src/AtomReader.cpp index c12ce3d7..63f493a7 100644 --- a/src/AtomReader.cpp +++ b/src/AtomReader.cpp @@ -138,7 +138,7 @@ AtomReader::write(const LV2_Atom* msg) if (subject_uri && !body) { _iface.del(Raul::URI(subject_uri)); return true; - } else if (body && body->body.otype == _uris.ingen_Edge) { + } else if (body && body->body.otype == _uris.ingen_Arc) { const LV2_Atom* tail = NULL; const LV2_Atom* head = NULL; const LV2_Atom* incidentTo = NULL; @@ -172,7 +172,7 @@ AtomReader::write(const LV2_Atom* msg) return false; } - if (body->body.otype == _uris.ingen_Edge) { + if (body->body.otype == _uris.ingen_Arc) { LV2_Atom* tail = NULL; LV2_Atom* head = NULL; lv2_atom_object_get(body, @@ -180,7 +180,7 @@ AtomReader::write(const LV2_Atom* msg) (LV2_URID)_uris.ingen_head, &head, NULL); if (!tail || !head) { - _log.warn("Edge has no tail or head\n"); + _log.warn("Arc has no tail or head\n"); return false; } @@ -189,7 +189,7 @@ AtomReader::write(const LV2_Atom* msg) if (tail_path && head_path) { _iface.connect(*tail_path, *head_path); } else { - _log.warn(Raul::fmt("Edge %1% => %2% has non-path tail or head\n") + _log.warn(Raul::fmt("Arc %1% => %2% has non-path tail or head\n") % atom_to_uri(tail) % atom_to_uri(head)); } } else { -- cgit v1.2.1