diff options
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/Parser.cpp | 6 | ||||
-rw-r--r-- | src/serialisation/Serialiser.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index ef7c9d8f..98235bcd 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -127,7 +127,7 @@ get_port(Ingen::Shared::World* world, const Raul::Path& parent, PortRecord& record) { - const LV2URIMap& uris = *world->uris().get(); + const URIs& uris = *world->uris().get(); // Get all properties Resource::Properties props = get_properties(model, subject); @@ -212,7 +212,7 @@ parse_node(Ingen::Shared::World* world, const Raul::Path& path, boost::optional<GraphObject::Properties> data) { - const LV2URIMap& uris = *world->uris().get(); + const URIs& uris = *world->uris().get(); Sord::URI rdf_instanceOf(*world->rdf_world(), NS_RDF "instanceOf"); @@ -276,7 +276,7 @@ parse_patch(Ingen::Shared::World* world, const Sord::URI ingen_polyphony(*world->rdf_world(), NS_INGEN "polyphony"); const Sord::URI lv2_port(*world->rdf_world(), NS_LV2 "port"); - const LV2URIMap& uris = *world->uris().get(); + const URIs& uris = *world->uris().get(); const Sord::Node& patch = subject_node; uint32_t patch_poly = 0; diff --git a/src/serialisation/Serialiser.cpp b/src/serialisation/Serialiser.cpp index 698e8f4b..c003d4f8 100644 --- a/src/serialisation/Serialiser.cpp +++ b/src/serialisation/Serialiser.cpp @@ -382,7 +382,7 @@ Serialiser::Impl::serialise_patch(SharedPtr<const Patch> patch, Sord::Curie(world, "rdf:type"), Sord::Curie(world, "lv2:Plugin")); - const LV2URIMap& uris = *_world.uris().get(); + const URIs& uris = *_world.uris().get(); // Always write a symbol (required by Ingen) string symbol; |