summaryrefslogtreecommitdiffstats
path: root/src/URIs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/URIs.cpp')
-rw-r--r--src/URIs.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/URIs.cpp b/src/URIs.cpp
index 25698b93..195b1a9d 100644
--- a/src/URIs.cpp
+++ b/src/URIs.cpp
@@ -34,8 +34,8 @@ namespace Ingen {
URIs::Quark::Quark(Forge& forge, URIMap* map, const char* c_str)
: Raul::URI(c_str)
- , id(map->map_uri(c_str))
- , atom(forge.alloc_uri(c_str))
+ , urid(forge.make_urid(Raul::URI(c_str)))
+ , uri(forge.alloc_uri(c_str))
{
}
@@ -95,6 +95,7 @@ URIs::URIs(Forge& f, URIMap* map)
, lv2_InputPort (forge, map, LV2_CORE__InputPort)
, lv2_OutputPort (forge, map, LV2_CORE__OutputPort)
, lv2_Plugin (forge, map, LV2_CORE__Plugin)
+ , lv2_appliesTo (forge, map, LV2_CORE__appliesTo)
, lv2_binary (forge, map, LV2_CORE__binary)
, lv2_connectionOptional(forge, map, LV2_CORE__connectionOptional)
, lv2_default (forge, map, LV2_CORE__default)
@@ -141,10 +142,12 @@ URIs::URIs(Forge& f, URIMap* map)
, patch_subject (forge, map, LV2_PATCH__subject)
, patch_value (forge, map, LV2_PATCH__value)
, patch_wildcard (forge, map, LV2_PATCH__wildcard)
+ , pset_Preset (forge, map, LV2_PRESETS__Preset)
, pset_preset (forge, map, LV2_PRESETS__preset)
, pprops_logarithmic (forge, map, LV2_PORT_PROPS__logarithmic)
, rdf_type (forge, map, NS_RDF "type")
, rdfs_Class (forge, map, NS_RDFS "Class")
+ , rdfs_label (forge, map, NS_RDFS "label")
, rdfs_seeAlso (forge, map, NS_RDFS "seeAlso")
, rsz_minimumSize (forge, map, LV2_RESIZE_PORT__minimumSize)
, time_Position (forge, map, LV2_TIME__Position)