summaryrefslogtreecommitdiffstats
path: root/src/engine/ObjectBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/ObjectBuffer.hpp')
-rw-r--r--src/engine/ObjectBuffer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/ObjectBuffer.hpp b/src/engine/ObjectBuffer.hpp
index 7cea89fc..865c3c3c 100644
--- a/src/engine/ObjectBuffer.hpp
+++ b/src/engine/ObjectBuffer.hpp
@@ -19,7 +19,7 @@
#define INGEN_ENGINE_OBJECTBUFFER_HPP
#include "raul/Atom.hpp"
-#include "object.lv2/object.h"
+#include "atom.lv2/atom.h"
#include "interface/PortType.hpp"
#include "Buffer.hpp"
@@ -43,11 +43,11 @@ public:
void resize(size_t size);
- LV2_Object* object() { return _buf; }
- const LV2_Object* object() const { return _buf; }
+ LV2_Atom* atom() { return _buf; }
+ const LV2_Atom* atom() const { return _buf; }
private:
- LV2_Object* _buf; ///< Contents
+ LV2_Atom* _buf; ///< Contents
};