summaryrefslogtreecommitdiffstats
path: root/src/client
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/client
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/client')
-rw-r--r--src/client/PluginUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/PluginUI.cpp b/src/client/PluginUI.cpp
index 42e864b1..d7ff6218 100644
--- a/src/client/PluginUI.cpp
+++ b/src/client/PluginUI.cpp
@@ -20,7 +20,7 @@
#include "atom.lv2/atom.h"
#include "shared/LV2Features.hpp"
#include "shared/LV2URIMap.hpp"
-#include "shared/LV2Object.hpp"
+#include "shared/LV2Atom.hpp"
#include "PluginUI.hpp"
#include "NodeModel.hpp"
#include "PortModel.hpp"
@@ -87,7 +87,7 @@ lv2_ui_write(LV2UI_Controller controller,
} else if (format == uris.object_transfer.id) {
LV2_Atom* buf = (LV2_Atom*)buffer;
Raul::Atom val;
- Shared::LV2Object::to_atom(uris, buf, val);
+ Shared::LV2Atom::to_atom(uris, buf, val);
ui->world()->engine()->set_property(port->path(), uris.ingen_value, val);
} else {