diff options
Diffstat (limited to 'src/gui/GraphView.cpp')
-rw-r--r-- | src/gui/GraphView.cpp | 10 |
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; |