diff options
author | David Robillard <d@drobilla.net> | 2012-03-25 03:05:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-25 03:05:52 +0000 |
commit | cbd666d1ba7681264c2c509c1bbc8999136d4f17 (patch) | |
tree | d77544516d9100092c59c821f5118a0c65cfda2f /src/server/events | |
parent | 94f372e95ecd718b7d2ed4f2aa1f0437e7968efb (diff) | |
download | ingen-cbd666d1ba7681264c2c509c1bbc8999136d4f17.tar.gz ingen-cbd666d1ba7681264c2c509c1bbc8999136d4f17.tar.bz2 ingen-cbd666d1ba7681264c2c509c1bbc8999136d4f17.zip |
Update for latest atom extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4104 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/events')
-rw-r--r-- | src/server/events/CreatePort.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/server/events/CreatePort.cpp b/src/server/events/CreatePort.cpp index cc6f7e93..8f3d267a 100644 --- a/src/server/events/CreatePort.cpp +++ b/src/server/events/CreatePort.cpp @@ -72,10 +72,8 @@ CreatePort::CreatePort(Engine& engine, _port_type = PortType::CONTROL; } else if (type == uris.cv_CVPort) { _port_type = PortType::CV; - } else if (type == uris.atom_ValuePort) { - _port_type = PortType::VALUE; - } else if (type == uris.atom_MessagePort) { - _port_type = PortType::MESSAGE; + } else if (type == uris.atom_AtomPort) { + _port_type = PortType::ATOM; } } |