summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-02-09 19:19:31 +0000
committerDavid Robillard <d@drobilla.net>2007-02-09 19:19:31 +0000
commit07c3b4ce3ed385368147bd4f2e058f83d9064b0d (patch)
tree2a6ca2cba56875ab9d13679c6fcc25aa7d5676b1 /src
parent984193c0f86ac3c413bc2646c2601fa9ba49f9af (diff)
downloadlilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.tar.gz
lilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.tar.bz2
lilv-07c3b4ce3ed385368147bd4f2e058f83d9064b0d.zip
Removed data type stuff from SLV2.
Reworked event system in FlowCanvas to use signals. Added straight connections and arrowheads to FlowCanvas, Ellipse fixes. git-svn-id: http://svn.drobilla.net/lad/slv2@293 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/port.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/port.c b/src/port.c
index f64dbbe..a7691ea 100644
--- a/src/port.c
+++ b/src/port.c
@@ -98,23 +98,6 @@ slv2_port_get_class(SLV2Plugin* p,
}
-char*
-slv2_port_get_data_type(SLV2Plugin* p,
- SLV2PortID id)
-{
- SLV2Value type = slv2_port_get_value(p, id, "lv2:datatype");
- assert(type);
- assert(type->num_values == 1);
- assert(type->values);
-
- char* ret = type->values[0];
- type->values[0] = NULL; // prevent deletion
-
- slv2_value_free(type);
- return ret;
-}
-
-
SLV2Value
slv2_port_get_value(SLV2Plugin* p,
SLV2PortID id,