diff --git a/legacy/eobj/lib/Eobj.h b/legacy/eobj/lib/Eobj.h index 0544dfd873..afb4f964fa 100644 --- a/legacy/eobj/lib/Eobj.h +++ b/legacy/eobj/lib/Eobj.h @@ -103,6 +103,7 @@ EAPI void eobj_constructor_error_set(Eobj *obj); EAPI Eina_Bool eobj_constructor_error_get(const Eobj *obj); EAPI Eobj_Class *eobj_class_new(const Eobj_Class_Description *desc, const Eobj_Class *parent, ...); +/* FIXME: Do I want that exposed? */ EAPI void eobj_class_free(Eobj_Class *klass); EAPI void eobj_class_funcs_set(Eobj_Class *klass, const Eobj_Op_Func_Description *func_descs); diff --git a/legacy/eobj/lib/eobj.c b/legacy/eobj/lib/eobj.c index 6e4d6ad8ca..5335297341 100644 --- a/legacy/eobj/lib/eobj.c +++ b/legacy/eobj/lib/eobj.c @@ -635,7 +635,7 @@ eobj_class_new(const Eobj_Class_Description *desc, const Eobj_Class *parent, ... } - /* Update the current offset. */ + /* Update the current offset. */ /* FIXME: Make sure this alignment is enough. */ klass->data_offset = klass->parent->data_offset + klass->parent->desc->private_size +