diff options
author | David Robillard <d@drobilla.net> | 2010-10-17 01:11:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-17 01:11:29 +0000 |
commit | 5a1ccca68baf9e8efffe3e0297730a911617693d (patch) | |
tree | 675764eb06e152f09b1d97c317d445a8050f253a /src/shared/ResourceImpl.cpp | |
parent | 78f786d90943cd63eb5db761e910169990c66d93 (diff) | |
download | ingen-5a1ccca68baf9e8efffe3e0297730a911617693d.tar.gz ingen-5a1ccca68baf9e8efffe3e0297730a911617693d.tar.bz2 ingen-5a1ccca68baf9e8efffe3e0297730a911617693d.zip |
Support current versions of LV2 atom, atom-port, and context extensions.
Working use case in this revision: lolep.parse => lolep.print (set parse input
to some string, it will be parsed, send to print as an LV2 atom, then
printed to the console by print).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2631 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/ResourceImpl.cpp')
-rw-r--r-- | src/shared/ResourceImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/ResourceImpl.cpp b/src/shared/ResourceImpl.cpp index 50395249..af706e15 100644 --- a/src/shared/ResourceImpl.cpp +++ b/src/shared/ResourceImpl.cpp @@ -149,10 +149,10 @@ ResourceImpl::type( } else if (atom == uris.lv2ev_EventPort) { data_type = PortType::EVENTS; port = true; - } else if (atom == uris.obj_ValuePort) { + } else if (atom == uris.aport_ValuePort) { data_type = PortType::VALUE; port = true; - } else if (atom == uris.obj_MessagePort) { + } else if (atom == uris.aport_MessagePort) { data_type = PortType::MESSAGE; port = true; } else { |