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/client/BlockModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/BlockModel.cpp') diff --git a/src/client/BlockModel.cpp b/src/client/BlockModel.cpp index cf778408..910f7037 100644 --- a/src/client/BlockModel.cpp +++ b/src/client/BlockModel.cpp @@ -38,7 +38,7 @@ BlockModel::BlockModel(URIs& uris, } BlockModel::BlockModel(URIs& uris, - const Raul::URI& plugin_uri, + const URI& plugin_uri, const Raul::Path& path) : ObjectModel(uris, path) , _plugin_uri(plugin_uri) @@ -245,7 +245,7 @@ BlockModel::label() const std::string BlockModel::port_label(SPtr port) const { - const Atom& name = port->get_property(Raul::URI(LV2_CORE__name)); + const Atom& name = port->get_property(URI(LV2_CORE__name)); if (name.is_valid() && name.type() == _uris.forge.String) { return name.ptr(); } -- cgit v1.2.1