summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphView.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-10-24 01:10:19 +0000
committerDavid Robillard <d@drobilla.net>2015-10-24 01:10:19 +0000
commit64e08b177f873ecacc914e966968f5240b5f8297 (patch)
tree711021bdcae7dffde1f6465da368be9f1ed1083a /src/gui/GraphView.cpp
parentae84d83a49ff577152b5a26a03cd919a3c43644c (diff)
downloadingen-64e08b177f873ecacc914e966968f5240b5f8297.tar.gz
ingen-64e08b177f873ecacc914e966968f5240b5f8297.tar.bz2
ingen-64e08b177f873ecacc914e966968f5240b5f8297.zip
Remove excess toolbar buttons
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5773 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/GraphView.cpp')
-rw-r--r--src/gui/GraphView.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gui/GraphView.cpp b/src/gui/GraphView.cpp
index a2140b37..591536ac 100644
--- a/src/gui/GraphView.cpp
+++ b/src/gui/GraphView.cpp
@@ -49,8 +49,6 @@ GraphView::GraphView(BaseObjectType* cobject,
xml->get_widget("graph_view_toolbar", _toolbar);
xml->get_widget("graph_view_process_but", _process_but);
xml->get_widget("graph_view_poly_spin", _poly_spin);
- xml->get_widget("graph_view_refresh_but", _refresh_but);
- xml->get_widget("graph_view_save_but", _save_but);
xml->get_widget("graph_view_scrolledwindow", _canvas_scrolledwindow);
_toolbar->set_toolbar_style(Gtk::TOOLBAR_ICONS);
@@ -96,8 +94,6 @@ GraphView::set_graph(SPtr<const GraphModel> graph)
// Connect widget signals to do things
_process_but->signal_toggled().connect(
sigc::mem_fun(this, &GraphView::process_toggled));
- _refresh_but->signal_clicked().connect(
- sigc::mem_fun(this, &GraphView::refresh_clicked));
_poly_spin->signal_value_changed().connect(
sigc::mem_fun(*this, &GraphView::poly_changed));
@@ -139,12 +135,6 @@ GraphView::poly_changed()
}
void
-GraphView::refresh_clicked()
-{
- _app->interface()->get(_graph->uri());
-}
-
-void
GraphView::property_changed(const Raul::URI& predicate, const Atom& value)
{
_enable_signal = false;