From f2d1b5c2bd36751e6139f985277fe2551f83e35a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 21 Oct 2010 19:57:13 +0000 Subject: Use "key" and "value" terminology over "predicate" and "object". --- ext/atom.lv2/atom.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/atom.lv2/atom.h') diff --git a/ext/atom.lv2/atom.h b/ext/atom.lv2/atom.h index e5990c9..df73504 100644 --- a/ext/atom.lv2/atom.h +++ b/ext/atom.lv2/atom.h @@ -86,8 +86,8 @@ typedef struct _LV2_Atom_Vector { /** The body of an LV2_Atom with type atom:Property */ typedef struct _LV2_Atom_Property { - uint32_t predicate; /**< Predicate (key) of RDF triple (URI mapped int) */ - LV2_Atom object; /**< Object (value) of RDF triple */ + uint32_t key; /**< Key (predicate) of Object or RDF triple (URIInt) */ + LV2_Atom value; /**< Value (object) of Object or RDF triple */ } LV2_Atom_Property; /** The body of an LV2_Atom with type atom:Triple */ -- cgit v1.2.1