diff options
author | David Robillard <d@drobilla.net> | 2011-02-16 02:14:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-16 02:14:40 +0000 |
commit | beebe6550e4fc00780b9cff57084bf5da3c56118 (patch) | |
tree | 861a5de6f3398c9115ab1930688193c4cce3b5dc /src/port.c | |
parent | 4cc15fb56f579e7eab9e0b947c433b96bc4c26f8 (diff) | |
download | lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.tar.gz lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.tar.bz2 lilv-beebe6550e4fc00780b9cff57084bf5da3c56118.zip |
Update for new Sord API.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2956 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/port.c')
-rw-r--r-- | src/port.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -120,7 +120,7 @@ slv2_port_supports_event(SLV2Plugin p, SLV2Matches results = slv2_plugin_find_statements( p, port_node, - sord_new_uri(p->world->model, NS_EV "supportsEvent"), + sord_new_uri(p->world->world, NS_EV "supportsEvent"), slv2_value_as_node(event)); const bool ret = !slv2_matches_end(results); @@ -144,7 +144,7 @@ slv2_port_get_value_by_qname(SLV2Plugin p, SLV2Matches results = slv2_plugin_find_statements( p, port_node, - sord_new_uri(p->world->model, pred_uri), + sord_new_uri(p->world->world, pred_uri), NULL); free(pred_uri); @@ -266,7 +266,7 @@ slv2_port_get_scale_points(SLV2Plugin p, SLV2Matches points = slv2_plugin_find_statements( p, port_node, - sord_new_uri(p->world->model, SLV2_NS_LV2 "scalePoint"), + sord_new_uri(p->world->world, SLV2_NS_LV2 "scalePoint"), NULL); SLV2ScalePoints ret = NULL; |