summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-14 02:58:12 +0000
committerDavid Robillard <d@drobilla.net>2012-04-14 02:58:12 +0000
commit99e701a8247c3e26251b045a93d826decd55e831 (patch)
treedc0806226d606b184f53284712cf25048cdd2e17 /src/server
parentf74b7279cf959a3b8f943e89db350af432ae78a8 (diff)
downloadingen-99e701a8247c3e26251b045a93d826decd55e831.tar.gz
ingen-99e701a8247c3e26251b045a93d826decd55e831.tar.bz2
ingen-99e701a8247c3e26251b045a93d826decd55e831.zip
Update URIs.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4184 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server')
-rw-r--r--src/server/LV2Info.cpp2
-rw-r--r--src/server/PortType.hpp2
-rw-r--r--src/server/events/CreatePort.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/server/LV2Info.cpp b/src/server/LV2Info.cpp
index 6574028f..eebc1813 100644
--- a/src/server/LV2Info.cpp
+++ b/src/server/LV2Info.cpp
@@ -37,7 +37,7 @@ LV2Info::LV2Info(Ingen::Shared::World* world)
: input_class(lilv_new_uri(world->lilv_world(), LV2_CORE__InputPort))
, output_class(lilv_new_uri(world->lilv_world(), LV2_CORE__OutputPort))
, control_class(lilv_new_uri(world->lilv_world(), LV2_CORE__ControlPort))
- , cv_class(lilv_new_uri(world->lilv_world(), "http://lv2plug.in/ns/ext/cv-port#CVPort"))
+ , cv_class(lilv_new_uri(world->lilv_world(), LV2_CORE__CVPort))
, audio_class(lilv_new_uri(world->lilv_world(), LV2_CORE__AudioPort))
, atom_port_class(lilv_new_uri(world->lilv_world(), LV2_ATOM__AtomPort))
, _world(world)
diff --git a/src/server/PortType.hpp b/src/server/PortType.hpp
index bd4c5819..41b6f636 100644
--- a/src/server/PortType.hpp
+++ b/src/server/PortType.hpp
@@ -76,7 +76,7 @@ private:
"http://drobilla.net/ns/ingen#nil",
"http://lv2plug.in/ns/lv2core#AudioPort",
"http://lv2plug.in/ns/lv2core#ControlPort",
- "http://lv2plug.in/ns/ext/cv-port#CVPort",
+ "http://lv2plug.in/ns/lv2core#CVPort",
"http://lv2plug.in/ns/ext/atom#AtomPort"
};
return uris[symbol_num];
diff --git a/src/server/events/CreatePort.cpp b/src/server/events/CreatePort.cpp
index 92d9a74a..e9589eaa 100644
--- a/src/server/events/CreatePort.cpp
+++ b/src/server/events/CreatePort.cpp
@@ -69,7 +69,7 @@ CreatePort::CreatePort(Engine& engine,
_port_type = PortType::AUDIO;
} else if (type == uris.lv2_ControlPort) {
_port_type = PortType::CONTROL;
- } else if (type == uris.cv_CVPort) {
+ } else if (type == uris.lv2_CVPort) {
_port_type = PortType::CV;
} else if (type == uris.atom_AtomPort) {
_port_type = PortType::ATOM;