diff --git a/legacy/evas/ChangeLog b/legacy/evas/ChangeLog index c28514e437..43a64de843 100644 --- a/legacy/evas/ChangeLog +++ b/legacy/evas/ChangeLog @@ -792,7 +792,11 @@ * Limit the updated region to fit in CPU cache for Pipe rendering. -2012-06-12 ChunEon Park +2012-06-12 ChunEon Park (Hermet) * Fixed simple line drawing on s/w backened. Unmatched loop scope caused the destination buffer pointer march in place. + +2012-06-12 ChunEon Park (Hermet) + + * Removed empty evas_object_map_source_set/get APIs. Will Not be implemented. diff --git a/legacy/evas/src/lib/Evas.h b/legacy/evas/src/lib/Evas.h index 8f49b55dd1..a1ef41afd2 100644 --- a/legacy/evas/src/lib/Evas.h +++ b/legacy/evas/src/lib/Evas.h @@ -4550,29 +4550,6 @@ EAPI void evas_object_map_enable_set (Evas_Object *obj, Eina */ EAPI Eina_Bool evas_object_map_enable_get (const Evas_Object *obj); -/** - * Set the map source object - * - * This sets the object from which the map is taken - can be any object that - * has map enabled on it. - * - * Currently not implemented. for future use. - * - * @param obj object to set the map source of - * @param src the source object from which the map is taken - */ -EAPI void evas_object_map_source_set (Evas_Object *obj, Evas_Object *src); - -/** - * Get the map source object - * - * @param obj object to set the map source of - * @return the object set as the source - * - * @see evas_object_map_source_set() - */ -EAPI Evas_Object *evas_object_map_source_get (const Evas_Object *obj); - /** * Set current object transformation map. * diff --git a/legacy/evas/src/lib/canvas/evas_map.c b/legacy/evas/src/lib/canvas/evas_map.c index cc110c855c..0f2ccf78d6 100644 --- a/legacy/evas/src/lib/canvas/evas_map.c +++ b/legacy/evas/src/lib/canvas/evas_map.c @@ -438,25 +438,6 @@ evas_object_map_enable_get(const Evas_Object *obj) return obj->cur.usemap; } - -EAPI void -evas_object_map_source_set(Evas_Object *obj, Evas_Object *src) -{ - MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); - return; - MAGIC_CHECK_END(); - (void)src; /* method still needs to be implemented. */ -} - -EAPI Evas_Object * -evas_object_map_source_get(const Evas_Object *obj) -{ - MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); - return NULL; - MAGIC_CHECK_END(); - return NULL; -} - EAPI void evas_object_map_set(Evas_Object *obj, const Evas_Map *map) {