summaryrefslogtreecommitdiffstats
path: root/src/pluginclass.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-31 17:02:46 +0000
committerDavid Robillard <d@drobilla.net>2011-01-31 17:02:46 +0000
commit920128cdb2bb7fe99a000965f26efb2f72cff524 (patch)
tree8ed0017abae53621893b91eadb66f7403e12fa2f /src/pluginclass.c
parentd394e7d292c8cc686a11a08984e2d11d704cf329 (diff)
downloadlilv-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/pluginclass.c')
-rw-r--r--src/pluginclass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluginclass.c b/src/pluginclass.c
index 39f1764..9997253 100644
--- a/src/pluginclass.c
+++ b/src/pluginclass.c
@@ -37,10 +37,10 @@ slv2_plugin_class_new(SLV2World world,
assert(!parent_node || librdf_node_is_resource(parent_node));
SLV2PluginClass pc = (SLV2PluginClass)malloc(sizeof(struct _SLV2PluginClass));
pc->world = world;
- pc->uri = slv2_value_new_librdf_uri(world, uri);
+ pc->uri = slv2_value_new_from_node(world, uri);
pc->label = slv2_value_new(world, SLV2_VALUE_STRING, label);
pc->parent_uri = (parent_node)
- ? slv2_value_new_librdf_uri(world, parent_node)
+ ? slv2_value_new_from_node(world, parent_node)
: NULL;
return pc;
}