aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext/atom/atom.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-16 22:14:20 +0000
committerDavid Robillard <d@drobilla.net>2012-03-16 22:14:20 +0000
commite6a03cf2be6f38ce6ccd960e66d7eac09061d958 (patch)
tree6813da9e7ce36dfd58b6f45843da9d7756f9e454 /lv2/lv2plug.in/ns/ext/atom/atom.ttl
parent62481d1cd30c78b90747370b620b26f0dd8ebae8 (diff)
downloadlv2-e6a03cf2be6f38ce6ccd960e66d7eac09061d958.tar.xz
atom:Int32 => atom:Int, atom:Int64 => atom:Long.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/atom/atom.ttl')
-rw-r--r--lv2/lv2plug.in/ns/ext/atom/atom.ttl10
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 ;