From f7226f4a05b34429911dd15082fbe8d6a96eccf8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 4 Feb 2011 18:34:29 +0000 Subject: SordTuple => SordQuad. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2910 a436a847-0d15-0410-975c-d299462d15a1 --- src/world.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index 6f66fc3..970cf9d 100644 --- a/src/world.c +++ b/src/world.c @@ -158,7 +158,7 @@ slv2_world_find_statements(SLV2World world, SLV2Node object, SLV2Node graph) { - SordTuple pat = { subject, predicate, object, graph }; + SordQuad pat = { subject, predicate, object, graph }; return sord_find(model, pat); } @@ -381,7 +381,7 @@ slv2_world_load_bundle(SLV2World world, SLV2Value bundle_uri) SLV2Node spec = slv2_match_subject(spec_results); // Add ?specification rdfs:seeAlso - SordTuple see_also_tup = { + SordQuad see_also_tup = { slv2_node_copy(spec), world->rdfs_seealso_node, sord_get_uri(world->model, true, manifest_uri.buf), @@ -390,7 +390,7 @@ slv2_world_load_bundle(SLV2World world, SLV2Value bundle_uri) sord_add(world->model, see_also_tup); // Add ?specification slv2:bundleURI - SordTuple bundle_uri_tup = { + SordQuad bundle_uri_tup = { slv2_node_copy(spec), slv2_node_copy(world->slv2_bundleuri_node), slv2_node_copy(bundle_uri->val.uri_val), -- cgit v1.2.1