diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/atom/atom.ttl')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom.ttl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.ttl b/lv2/lv2plug.in/ns/ext/atom/atom.ttl index 9bc959f..ed52a5e 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom.ttl +++ b/lv2/lv2plug.in/ns/ext/atom/atom.ttl @@ -125,17 +125,17 @@ atom:Number rdfs:subClassOf atom:Atom ; rdfs:label "Number" . -atom:Int32 +atom:Int a rdfs:Class ; rdfs:subClassOf atom:Number ; rdfs:label "Signed 32-bit integer" ; - atom:cType "LV2_Atom_Int32" . + atom:cType "LV2_Atom_Int" . -atom:Int64 +atom:Long a rdfs:Class ; rdfs:subClassOf atom:Number ; rdfs:label "Signed 64-bit integer" ; - atom:cType "LV2_Atom_Int64" . + atom:cType "LV2_Atom_Long" . atom:Float a rdfs:Class ; @@ -154,7 +154,7 @@ atom:Bool rdfs:subClassOf atom:Atom ; rdfs:label "Boolean" ; atom:cType "LV2_Atom_Bool" ; - rdfs:comment "An Int32 where 0 is false and any other value is true." . + rdfs:comment "An Int where 0 is false and any other value is true." . atom:String a rdfs:Class ; |