diff options
author | David Robillard <d@drobilla.net> | 2012-04-13 04:38:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-13 04:38:38 +0000 |
commit | 4ec850f5dc88d39f8cf67b9bc0f549dbf43788ce (patch) | |
tree | 8561020ac3f87a7160c980adf4799c6995220e94 /lv2/lv2plug.in/ns/ext | |
parent | 8e778ac86e2b1773b21e56d601c34d56aa51e93b (diff) | |
download | lv2-4ec850f5dc88d39f8cf67b9bc0f549dbf43788ce.tar.xz |
Fix incorrect ranges of some properties.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/event/event.ttl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/event/event.ttl b/lv2/lv2plug.in/ns/ext/event/event.ttl index 9a36e6a..dd3ba3a 100644 --- a/lv2/lv2plug.in/ns/ext/event/event.ttl +++ b/lv2/lv2plug.in/ns/ext/event/event.ttl @@ -22,6 +22,8 @@ dcs:changeset [ dcs:item [ rdfs:label "Fix bug in lv2_event_reserve()." + ] , [ + rdfs:label "Fix incorrect ranges of some properties." ] ] ] , [ @@ -139,7 +141,7 @@ event types whether or not this property is present. ev:supportsEvent a rdf:Property ; rdfs:domain lv2:Port ; - rdfs:range ev:Event ; + rdfs:range rdfs:Class ; rdfs:label "Supports event type" ; rdfs:comment """ Indicates that this port supports or "understands" a certain event type. @@ -172,7 +174,7 @@ connecting an input, but this property should be set whenever it applies. ev:supportsTimeStamp a rdf:Property ; rdfs:domain lv2:Port ; - rdfs:range ev:TimeStamp ; + rdfs:range rdfs:Class ; rdfs:label "Supports time stamp type" ; rdfs:comment """ Indicates that this port supports or "understands" a certain time stamp type. @@ -183,7 +185,7 @@ event buffer with a time stamp type that isn't supported by the port. ev:generatesTimeStamp a rdf:Property ; rdfs:domain lv2:Port ; - rdfs:range ev:TimeStamp ; + rdfs:range rdfs:Class ; rdfs:label "Outputs time stamp type" ; rdfs:comment """ Indicates that this port may output a certain time stamp type, regardless of |