diff options
author | David Robillard <d@drobilla.net> | 2011-12-01 20:19:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-01 20:19:07 +0000 |
commit | ea44f93c73ce39deb3bc45a9c5ce475974079513 (patch) | |
tree | f46c5485c478f0ed6c18ec1acc7cdd71579e98c9 /src | |
parent | 972b8d42b13a9e006f1ca50dcd76e579bb5f2394 (diff) | |
download | machina-ea44f93c73ce39deb3bc45a9c5ce475974079513.tar.gz machina-ea44f93c73ce39deb3bc45a9c5ce475974079513.tar.bz2 machina-ea44f93c73ce39deb3bc45a9c5ce475974079513.zip |
Fix compilation.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@3728 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/NodeView.cpp | 2 | ||||
-rw-r--r-- | src/gui/NodeView.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/NodeView.cpp b/src/gui/NodeView.cpp index 2312493..e10e3b9 100644 --- a/src/gui/NodeView.cpp +++ b/src/gui/NodeView.cpp @@ -112,7 +112,7 @@ NodeView::show_label(bool show) } void -NodeView::set_selected(bool selected) +NodeView::set_selected(gboolean selected) { Ellipse::set_selected(selected); std::cerr << "FIXME: dash" << std::endl; diff --git a/src/gui/NodeView.hpp b/src/gui/NodeView.hpp index 5190e04..9b827c1 100644 --- a/src/gui/NodeView.hpp +++ b/src/gui/NodeView.hpp @@ -45,7 +45,7 @@ private: void 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 set_selected(bool selected); + void set_selected(gboolean selected); bool node_is(Machina::URIInt key); |