From efe8e2311ee2fed881f95cc1e72825906d21c7c1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 12 Aug 2012 23:42:17 +0000 Subject: Use ingen:root as the path for the root patch, opening up path space for engine/driver/etc. Strict conversion between Path and URI (Path no longer is-a URI). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4672 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/PropertiesWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/PropertiesWindow.cpp') diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp index 1a4228b8..a79e2737 100644 --- a/src/gui/PropertiesWindow.cpp +++ b/src/gui/PropertiesWindow.cpp @@ -254,7 +254,7 @@ PropertiesWindow::set_object(SharedPtr model) reset(); _model = model; - set_title(model->path().chop_scheme() + " Properties - Ingen"); + set_title(model->path().str() + " Properties - Ingen"); World* world = _app->world(); @@ -506,7 +506,7 @@ PropertiesWindow::add_clicked() Resource::Properties properties; properties.insert(make_pair(key_uri.c_str(), value)); - _app->interface()->put(_model->path(), properties); + _app->interface()->put(_model->uri(), properties); } void @@ -531,7 +531,7 @@ PropertiesWindow::apply_clicked() } } - _app->interface()->put(_model->path(), properties); + _app->interface()->put(_model->uri(), properties); LOG(debug) << "}" << endl; } -- cgit v1.2.1