From: tasn Date: Wed, 11 Apr 2012 08:57:12 +0000 (+0000) Subject: Eobj: Removed eobj_class_parent_get. It's useless and discouraged. X-Git-Tag: submit/2.0alpha-wayland/20121127.222020~252 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d06302a9ce7f3a1818d2f2ab5b45eaa7704e4492;p=profile%2Fivi%2Feobj.git Eobj: Removed eobj_class_parent_get. It's useless and discouraged. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eobj@70013 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/lib/Eobj.h b/lib/Eobj.h index 44ef0c4..0544dfd 100644 --- a/lib/Eobj.h +++ b/lib/Eobj.h @@ -95,7 +95,6 @@ EAPI Eina_Bool eobj_do_internal(Eobj *obj, ...); EAPI Eina_Bool eobj_super_do(Eobj *obj, Eobj_Op op, ...); EAPI const Eobj_Class *eobj_class_get(Eobj *obj); -EAPI const Eobj_Class *eobj_class_parent_get(const Eobj_Class *klass); EAPI const char *eobj_class_name_get(const Eobj_Class *klass); EAPI void eobj_constructor_super(Eobj *obj); diff --git a/lib/eobj.c b/lib/eobj.c index 83cf38b..18b3644 100644 --- a/lib/eobj.c +++ b/lib/eobj.c @@ -435,12 +435,6 @@ eobj_class_get(Eobj *obj) return obj->klass; } -EAPI const Eobj_Class * -eobj_class_parent_get(const Eobj_Class *klass) -{ - return klass->parent; -} - EAPI const char * eobj_class_name_get(const Eobj_Class *klass) {