aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodeView.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
committerDavid Robillard <d@drobilla.net>2013-02-23 19:55:13 +0000
commitbb67af535ef57101f6b543c99e9489e984c8f1ec (patch)
treea18aebb32a20ccad6a51f57e5e037f43eb742639 /src/gui/NodeView.hpp
parentb8e54f8f66abaf71927a023e1cfee905842078aa (diff)
downloadmachina-bb67af535ef57101f6b543c99e9489e984c8f1ec.tar.gz
machina-bb67af535ef57101f6b543c99e9489e984c8f1ec.tar.bz2
machina-bb67af535ef57101f6b543c99e9489e984c8f1ec.zip
Move Atom implementation out of Raul so it can depend on LV2.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5076 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeView.hpp')
-rw-r--r--src/gui/NodeView.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/NodeView.hpp b/src/gui/NodeView.hpp
index d9ea1e8..6e0681c 100644
--- a/src/gui/NodeView.hpp
+++ b/src/gui/NodeView.hpp
@@ -54,10 +54,10 @@ public:
private:
bool on_event(GdkEvent* ev);
bool on_double_click(GdkEventButton* ev);
- void on_property(machina::URIInt key, const Raul::Atom& value);
- void on_action_property(machina::URIInt key, const Raul::Atom& value);
+ void on_property(machina::URIInt key, const Atom& value);
+ void on_action_property(machina::URIInt key, const Atom& value);
- bool is(Raul::Forge& forge, machina::URIInt key);
+ bool is(Forge& forge, machina::URIInt key);
Gtk::Window* _window;
SPtr<machina::client::ClientObject> _node;