From 44f7ad5222d824d81dc743045d5887418847e74e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Jan 2018 00:41:34 +0100 Subject: Add URI class and remove use of Raul::URI --- src/gui/GraphTreeWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/GraphTreeWindow.cpp') diff --git a/src/gui/GraphTreeWindow.cpp b/src/gui/GraphTreeWindow.cpp index e5522a74..1eb6557b 100644 --- a/src/gui/GraphTreeWindow.cpp +++ b/src/gui/GraphTreeWindow.cpp @@ -88,7 +88,7 @@ GraphTreeWindow::add_graph(SPtr pm) Gtk::TreeModel::iterator iter = _graph_treestore->append(); Gtk::TreeModel::Row row = *iter; if (pm->path().is_root()) { - row[_graph_tree_columns.name_col] = _app->interface()->uri(); + row[_graph_tree_columns.name_col] = _app->interface()->uri().string(); } else { row[_graph_tree_columns.name_col] = pm->symbol().c_str(); } @@ -193,7 +193,7 @@ GraphTreeWindow::event_graph_enabled_toggled(const Glib::ustring& path_str) } void -GraphTreeWindow::graph_property_changed(const Raul::URI& key, +GraphTreeWindow::graph_property_changed(const URI& key, const Atom& value, SPtr graph) { -- cgit v1.2.1