diff options
author | David Robillard <d@drobilla.net> | 2021-01-02 18:17:04 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-02 18:17:04 +0100 |
commit | f0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch) | |
tree | 8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /src/server/events/CreateGraph.cpp | |
parent | d2143bb3298d94ebef62ed50d377e89533a02b42 (diff) | |
download | ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2 ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip |
Update for latest raul
Diffstat (limited to 'src/server/events/CreateGraph.cpp')
-rw-r--r-- | src/server/events/CreateGraph.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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<Interface>& 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<events::CreatePort>(_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<events::CreatePort>(_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<GraphImpl*>(_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); |