From 43f4caf7b04fca8a423c0c15a03c96fba175ddd6 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 11 Apr 2012 08:57:12 +0000 Subject: [PATCH] Eobj: Removed eobj_class_parent_get. It's useless and discouraged. SVN revision: 70013 --- legacy/eobj/lib/Eobj.h | 1 - legacy/eobj/lib/eobj.c | 6 ------ 2 files changed, 7 deletions(-) diff --git a/legacy/eobj/lib/Eobj.h b/legacy/eobj/lib/Eobj.h index 44ef0c42a1..0544dfd873 100644 --- a/legacy/eobj/lib/Eobj.h +++ b/legacy/eobj/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/legacy/eobj/lib/eobj.c b/legacy/eobj/lib/eobj.c index 83cf38b16c..18b3644680 100644 --- a/legacy/eobj/lib/eobj.c +++ b/legacy/eobj/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) {