From 2b2f150447c2d3bde17cbe5d95b9902b7ef6e040 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 3 May 2011 05:31:23 +0000 Subject: Replace lilv_plugin_get_value_for_subject with lilv_world_find_nodes. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3247 a436a847-0d15-0410-975c-d299462d15a1 --- src/port.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/port.c') diff --git a/src/port.c b/src/port.c index a23f737..8aa4c59 100644 --- a/src/port.c +++ b/src/port.c @@ -67,7 +67,7 @@ lilv_port_has_property(const LilvPlugin* p, const LilvNode* property) { assert(property); - SordIter* results = lilv_world_query( + SordIter* results = lilv_world_query_internal( p->world, port->node, p->world->lv2_portproperty_node, @@ -87,7 +87,7 @@ lilv_port_supports_event(const LilvPlugin* p, #define NS_EV (const uint8_t*)"http://lv2plug.in/ns/ext/event#" assert(event); - SordIter* results = lilv_world_query( + SordIter* results = lilv_world_query_internal( p->world, port->node, sord_new_uri(p->world->world, NS_EV "supportsEvent"), @@ -105,7 +105,7 @@ lilv_port_get_value_by_node(const LilvPlugin* p, { assert(sord_node_get_type(predicate) == SORD_URI); - SordIter* results = lilv_world_query( + SordIter* results = lilv_world_query_internal( p->world, port->node, predicate, @@ -208,7 +208,7 @@ LilvScalePoints* lilv_port_get_scale_points(const LilvPlugin* p, const LilvPort* port) { - SordIter* points = lilv_world_query( + SordIter* points = lilv_world_query_internal( p->world, port->node, sord_new_uri(p->world->world, (const uint8_t*)LILV_NS_LV2 "scalePoint"), -- cgit v1.2.1