diff options
author | David Robillard <d@drobilla.net> | 2008-10-12 19:58:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-12 19:58:33 +0000 |
commit | af50ce8066ba9ce288d0724707f06e7a88b00f84 (patch) | |
tree | e23d060df1ccd63edb39b50432db41c5e9fc2d51 /src/common | |
parent | 544851bda4a85a97b1f1e3a229ccd21b00a0f3fe (diff) | |
download | ingen-af50ce8066ba9ce288d0724707f06e7a88b00f84.tar.gz ingen-af50ce8066ba9ce288d0724707f06e7a88b00f84.tar.bz2 ingen-af50ce8066ba9ce288d0724707f06e7a88b00f84.zip |
Remove meaningless/non-LV2/kludgey 'event' 'midi' and 'osc' distinction.
Expose event ports to jack midi, again.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1665 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/interface/DataType.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/interface/DataType.hpp b/src/common/interface/DataType.hpp index 1651e41d..52831e2a 100644 --- a/src/common/interface/DataType.hpp +++ b/src/common/interface/DataType.hpp @@ -47,8 +47,7 @@ public: _symbol = AUDIO; } else if (uri == type_uri(CONTROL)) { _symbol = CONTROL; - } else if (uri == type_uri(EVENT) - || (uri == "ingen:MIDIPort") || uri == "ingen:OSCPort" || uri == "lv2ev:EventPort") { + } else if (uri == type_uri(EVENT) || uri == "lv2ev:EventPort") { _symbol = EVENT; } } |