diff options
author | David Robillard <d@drobilla.net> | 2010-05-04 04:22:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-05-04 04:22:46 +0000 |
commit | a377fe171dd248f9418634f5f23d10a9440fd920 (patch) | |
tree | af17a5315a8c697d67fa8dbcb7695770345dc202 /src/client/PluginUI.cpp | |
parent | 5fcc724a4bcd9a8111a0a6d483e3d6dcbe97a2d5 (diff) | |
download | ingen-a377fe171dd248f9418634f5f23d10a9440fd920.tar.gz ingen-a377fe171dd248f9418634f5f23d10a9440fd920.tar.bz2 ingen-a377fe171dd248f9418634f5f23d10a9440fd920.zip |
Rename "object" extension "atom" extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2561 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/PluginUI.cpp')
-rw-r--r-- | src/client/PluginUI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/PluginUI.cpp b/src/client/PluginUI.cpp index 097ba1b0..42e864b1 100644 --- a/src/client/PluginUI.cpp +++ b/src/client/PluginUI.cpp @@ -17,7 +17,7 @@ #include "raul/log.hpp" #include "event.lv2/event-helpers.h" -#include "object.lv2/object.h" +#include "atom.lv2/atom.h" #include "shared/LV2Features.hpp" #include "shared/LV2URIMap.hpp" #include "shared/LV2Object.hpp" @@ -85,7 +85,7 @@ lv2_ui_write(LV2UI_Controller controller, } } else if (format == uris.object_transfer.id) { - LV2_Object* buf = (LV2_Object*)buffer; + LV2_Atom* buf = (LV2_Atom*)buffer; Raul::Atom val; Shared::LV2Object::to_atom(uris, buf, val); ui->world()->engine()->set_property(port->path(), uris.ingen_value, val); |