From f0e33dd09a390ca946e95a6f55fea397dca0ca1f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 18:17:04 +0100 Subject: Update for latest raul --- src/server/events/CreateGraph.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/server/events/CreateGraph.cpp') diff --git a/src/server/events/CreateGraph.cpp b/src/server/events/CreateGraph.cpp index e5dbb55b..ea66ae55 100644 --- a/src/server/events/CreateGraph.cpp +++ b/src/server/events/CreateGraph.cpp @@ -54,7 +54,7 @@ CreateGraph::CreateGraph(Engine& engine, const std::shared_ptr& client, int32_t id, SampleCount timestamp, - const Raul::Path& path, + const raul::Path& path, const Properties& properties) : Event(engine, client, id, timestamp) , _path(path) @@ -91,7 +91,7 @@ CreateGraph::build_child_events() _child_events.push_back( make_unique(_engine, _request_client, -1, _time, - _path.child(Raul::Symbol("control")), + _path.child(raul::Symbol("control")), in_properties)); // Add notify port (message respond) @@ -106,7 +106,7 @@ CreateGraph::build_child_events() _child_events.push_back( make_unique(_engine, _request_client, -1, _time, - _path.child(Raul::Symbol("notify")), + _path.child(raul::Symbol("notify")), out_properties)); } @@ -118,7 +118,7 @@ CreateGraph::pre_process(PreProcessContext& ctx) } if (!_path.is_root()) { - const Raul::Path up(_path.parent()); + const raul::Path up(_path.parent()); if (!(_parent = dynamic_cast(_engine.store()->get(up)))) { return Event::pre_process_done(Status::PARENT_NOT_FOUND, up); } @@ -143,7 +143,7 @@ CreateGraph::pre_process(PreProcessContext& ctx) ext_poly = int_poly; } - const Raul::Symbol symbol(_path.is_root() ? "graph" : _path.symbol()); + const raul::Symbol symbol(_path.is_root() ? "graph" : _path.symbol()); // Get graph prototype iterator t = _properties.find(uris.lv2_prototype); -- cgit v1.2.1