summaryrefslogtreecommitdiffstats
path: root/src/engine/events/SetPortValue.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-05-04 04:37:32 +0000
committerDavid Robillard <d@drobilla.net>2010-05-04 04:37:32 +0000
commitbaddfc8f54b34585b19323516d2e48d4d8f33759 (patch)
treef383cb61f58cbf75d2f360abb9eab6a35ef105f2 /src/engine/events/SetPortValue.cpp
parenta377fe171dd248f9418634f5f23d10a9440fd920 (diff)
downloadingen-baddfc8f54b34585b19323516d2e48d4d8f33759.tar.gz
ingen-baddfc8f54b34585b19323516d2e48d4d8f33759.tar.bz2
ingen-baddfc8f54b34585b19323516d2e48d4d8f33759.zip
LV2Object => LV2Atom.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2563 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/SetPortValue.cpp')
-rw-r--r--src/engine/events/SetPortValue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/events/SetPortValue.cpp b/src/engine/events/SetPortValue.cpp
index 6488fd6c..67c2a31b 100644
--- a/src/engine/events/SetPortValue.cpp
+++ b/src/engine/events/SetPortValue.cpp
@@ -20,7 +20,7 @@
#include "event.lv2/event.h"
#include "shared/LV2URIMap.hpp"
#include "shared/LV2Features.hpp"
-#include "shared/LV2Object.hpp"
+#include "shared/LV2Atom.hpp"
#include "module/World.hpp"
#include "AudioBuffer.hpp"
#include "ClientBroadcaster.hpp"
@@ -176,7 +176,7 @@ SetPortValue::apply(Context& context)
ObjectBuffer* const obuf = dynamic_cast<ObjectBuffer*>(buf);
if (obuf) {
obuf->atom()->size = obuf->size() - sizeof(LV2_Atom);
- if (LV2Object::from_atom(uris, _value, obuf->atom())) {
+ if (LV2Atom::from_atom(uris, _value, obuf->atom())) {
debug << "Converted atom " << _value << " :: " << obuf->atom()->type
<< " * " << obuf->atom()->size << " @ " << obuf->atom() << endl;
return;