diff options
author | David Robillard <d@drobilla.net> | 2011-01-31 16:54:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-31 16:54:11 +0000 |
commit | d394e7d292c8cc686a11a08984e2d11d704cf329 (patch) | |
tree | ff01905f19fbd0333e5c82d60a5eb4abaedb2d2f /src/pluginclass.c | |
parent | 5872789853f4daba7d558c2a42b222862b45e269 (diff) | |
download | lilv-d394e7d292c8cc686a11a08984e2d11d704cf329.tar.gz lilv-d394e7d292c8cc686a11a08984e2d11d704cf329.tar.bz2 lilv-d394e7d292c8cc686a11a08984e2d11d704cf329.zip |
Typedef away most use of librdf_node.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2890 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/pluginclass.c')
-rw-r--r-- | src/pluginclass.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pluginclass.c b/src/pluginclass.c index 910375c..39f1764 100644 --- a/src/pluginclass.c +++ b/src/pluginclass.c @@ -29,10 +29,10 @@ /* private */ SLV2PluginClass -slv2_plugin_class_new(SLV2World world, - librdf_node* parent_node, - librdf_node* uri, - const char* label) +slv2_plugin_class_new(SLV2World world, + SLV2Node parent_node, + SLV2Node uri, + const char* label) { assert(!parent_node || librdf_node_is_resource(parent_node)); SLV2PluginClass pc = (SLV2PluginClass)malloc(sizeof(struct _SLV2PluginClass)); |