summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/LV2Node.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-19 18:29:16 +0000
committerDavid Robillard <d@drobilla.net>2007-04-19 18:29:16 +0000
commit6b3443ebabdeec0b908fb505e30c1422b96589b7 (patch)
tree7cfe81e88cfa92a8ef413f319dd143bd9a1a5e0d /src/libs/engine/LV2Node.cpp
parent71d83ce627f8d8ddfc381312155d1a05082618b2 (diff)
downloadingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.tar.gz
ingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.tar.bz2
ingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.zip
Renamed SLV2Model SLV2World.
Updated Ingen for SLV2 API changes. git-svn-id: http://svn.drobilla.net/lad/ingen@459 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/LV2Node.cpp')
-rw-r--r--src/libs/engine/LV2Node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/LV2Node.cpp b/src/libs/engine/LV2Node.cpp
index 459d3c78..f45af62c 100644
--- a/src/libs/engine/LV2Node.cpp
+++ b/src/libs/engine/LV2Node.cpp
@@ -82,7 +82,7 @@ LV2Node::instantiate()
Port* port = NULL;
for (size_t j=0; j < num_ports; ++j) {
- SLV2PortID id = slv2_port_by_index(j);
+ SLV2Port id = slv2_plugin_get_port_by_index(_lv2_plugin, j);
// LV2 shortnames are guaranteed to be unique, valid C identifiers
port_name = (char*)slv2_port_get_symbol(_lv2_plugin, id);