summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Node.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-09-22 19:21:26 +0000
committerDavid Robillard <d@drobilla.net>2010-09-22 19:21:26 +0000
commitfecf51ec1c982a7c15dc895122b36c36d9d8eb8a (patch)
tree47f2b694bf39d8f4dc9f16ca99eaca22e3d4fbd0 /src/engine/LV2Node.cpp
parentda279658e141672af1568f8d483b666bb41d26c1 (diff)
downloadingen-fecf51ec1c982a7c15dc895122b36c36d9d8eb8a.tar.gz
ingen-fecf51ec1c982a7c15dc895122b36c36d9d8eb8a.tar.bz2
ingen-fecf51ec1c982a7c15dc895122b36c36d9d8eb8a.zip
Move http://lv2plug.in/ns/dev extensions to http://lv2plug.in/ns/ext.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2614 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/LV2Node.cpp')
-rw-r--r--src/engine/LV2Node.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/LV2Node.cpp b/src/engine/LV2Node.cpp
index 8d95b641..84835f10 100644
--- a/src/engine/LV2Node.cpp
+++ b/src/engine/LV2Node.cpp
@@ -190,13 +190,13 @@ LV2Node::instantiate(BufferFactory& bufs)
slv2_plugin_get_port_ranges_float(plug, min_values, max_values, def_values);
SLV2Value context_pred = slv2_value_new_uri(info->lv2_world(),
- "http://lv2plug.in/ns/dev/contexts#context");
+ "http://lv2plug.in/ns/ext/contexts#context");
SLV2Value default_pred = slv2_value_new_uri(info->lv2_world(),
"http://lv2plug.in/ns/lv2core#default");
SLV2Value min_size_pred = slv2_value_new_uri(info->lv2_world(),
- "http://lv2plug.in/ns/dev/resize-port#minimumSize");
+ "http://lv2plug.in/ns/ext/resize-port#minimumSize");
SLV2Value port_property_pred = slv2_value_new_uri(info->lv2_world(),
"http://lv2plug.in/ns/lv2core#portProperty");
@@ -205,7 +205,7 @@ LV2Node::instantiate(BufferFactory& bufs)
LV2_ATOM_URI "#supports");
//SLV2Value as_large_as_pred = slv2_value_new_uri(info->lv2_world(),
- // "http://lv2plug.in/ns/dev/resize-port#asLargeAs");
+ // "http://lv2plug.in/ns/ext/resize-port#asLargeAs");
for (uint32_t j = 0; j < num_ports; ++j) {
SLV2Port id = slv2_plugin_get_port_by_index(plug, j);