From baddfc8f54b34585b19323516d2e48d4d8f33759 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 4 May 2010 04:37:32 +0000 Subject: LV2Object => LV2Atom. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2563 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/PluginUI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/PluginUI.cpp') 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 { -- cgit v1.2.1