diff options
Diffstat (limited to 'src/server/ingen_lv2.cpp')
-rw-r--r-- | src/server/ingen_lv2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index 04cc5a33..c0749847 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -570,8 +570,8 @@ ingen_instantiate(const LV2_Descriptor* descriptor, // Parse graph, filling the queue with events to create it plugin->world->interface()->bundle_begin(); - plugin->world->parser()->parse_file(plugin->world, - plugin->world->interface().get(), + plugin->world->parser()->parse_file(*plugin->world, + *plugin->world->interface(), graph->filename); plugin->world->interface()->bundle_end(); @@ -771,7 +771,7 @@ ingen_restore(LV2_Handle instance, // Load new graph std::lock_guard<std::mutex> lock(plugin->world->rdf_mutex()); plugin->world->parser()->parse_file( - plugin->world, plugin->world->interface().get(), real_path); + *plugin->world, *plugin->world->interface(), real_path); free(real_path); return LV2_STATE_SUCCESS; |