From e6eeac0ccc48f9a863aafd7ddf6d51c43b7e52b0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 9 Dec 2006 07:40:55 +0000 Subject: Updated to match lv2.ttl changes (HostFeature class names) git-svn-id: http://svn.drobilla.net/lad/slv2@213 a436a847-0d15-0410-975c-d299462d15a1 --- src/plugin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugin.c') diff --git a/src/plugin.c b/src/plugin.c index d2f5849..7746488 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -235,9 +235,9 @@ slv2_plugin_get_supported_features(const SLV2Plugin* p) { const char* const query = "SELECT DISTINCT ?feature FROM data: WHERE { \n" - " { plugin: lv2:requiredHostFeature ?feature } \n" + " { plugin: lv2:optionalHostFeature ?feature } \n" " UNION \n" - " { plugin: lv2:supportedHostFeature ?feature } \n" + " { plugin: lv2:requiredHostFeature ?feature } \n" "}\n"; SLV2Property result = slv2_query_get_results(p, query, "feature"); @@ -251,7 +251,7 @@ slv2_plugin_get_optional_features(const SLV2Plugin* p) { const char* const query = "SELECT DISTINCT ?feature FROM data: WHERE { \n" - " plugin: lv2:supportedHostFeature ?feature . \n" + " plugin: lv2:optionalHostFeature ?feature . \n" "}\n"; SLV2Property result = slv2_query_get_results(p, query, "feature"); -- cgit v1.2.1