diff options
author | David Robillard <d@drobilla.net> | 2011-01-31 17:02:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-31 17:02:46 +0000 |
commit | 920128cdb2bb7fe99a000965f26efb2f72cff524 (patch) | |
tree | 8ed0017abae53621893b91eadb66f7403e12fa2f /src/world.c | |
parent | d394e7d292c8cc686a11a08984e2d11d704cf329 (diff) | |
download | lilv-920128cdb2bb7fe99a000965f26efb2f72cff524.tar.gz lilv-920128cdb2bb7fe99a000965f26efb2f72cff524.tar.bz2 lilv-920128cdb2bb7fe99a000965f26efb2f72cff524.zip |
slv2_value_new_librdf_node => slv2_value_new_from_node .
Remove slv2_value_new_librdf_uri.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2891 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/world.c')
-rw-r--r-- | src/world.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/world.c b/src/world.c index f9f4006..9c8200a 100644 --- a/src/world.c +++ b/src/world.c @@ -673,7 +673,7 @@ slv2_world_load_all(SLV2World world) END_MATCH(bundles); // Add a new plugin to the world - SLV2Value uri = slv2_value_new_librdf_uri(world, plugin_node); + SLV2Value uri = slv2_value_new_from_node(world, plugin_node); const unsigned n_plugins = raptor_sequence_size(world->plugins); #ifndef NDEBUG if (n_plugins > 0) { @@ -685,7 +685,7 @@ slv2_world_load_all(SLV2World world) #endif SLV2Plugin plugin = slv2_plugin_new( - world, uri, slv2_value_new_librdf_uri(world, bundle_node)); + world, uri, slv2_value_new_from_node(world, bundle_node)); raptor_sequence_push(world->plugins, plugin); @@ -702,7 +702,7 @@ slv2_world_load_all(SLV2World world) librdf_node_get_uri(lib_node)); if (dlopen(slv2_uri_to_path(lib_uri, RTLD_LAZY))) { - plugin->dynman_uri = slv2_value_new_librdf_uri(world, lib_node); + plugin->dynman_uri = slv2_value_new_from_node(world, lib_node); } } END_MATCH(dmanifests); @@ -716,7 +716,7 @@ slv2_world_load_all(SLV2World world) FOREACH_MATCH(files) { SLV2Node file_node = MATCH_OBJECT(files); raptor_sequence_push(plugin->data_uris, - slv2_value_new_librdf_uri(world, file_node)); + slv2_value_new_from_node(world, file_node)); } END_MATCH(files); |