tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=368f36dee3f980f295b5170b6d87fdd0004bcc9f
commit 368f36dee3f980f295b5170b6d87fdd0004bcc9f Author: Tom Hacohen <[email protected]> Date: Wed May 7 15:03:40 2014 +0100 Eo: Improved docs a bit. --- src/lib/eo/Eo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index 13179b8..0ec58b5 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h @@ -386,9 +386,9 @@ struct _Eo_Class_Description const char *name; /**< The name of the class. */ Eo_Class_Type type; /**< The type of the class. */ struct { - Eo_Op_Description *descs2; - size_t count; - } ops; /**< The ops description, should be filled using #EO_CLASS_DESCRIPTION_OPS */ + Eo_Op_Description *descs2; /**< The op descriptions array of size count. */ + size_t count; /**< Number of op descriptions. */ + } ops; /**< The ops description, should be filled using #EO_CLASS_DESCRIPTION_OPS (later sorted by Eo). */ const Eo_Event_Description **events; /**< The event descriptions for this class. */ size_t data_size; /**< The size of data (private + protected + public) this class needs per object. */ void (*class_constructor)(Eo_Class *klass); /**< The constructor of the class. */ --
