evas/map - removed empty evas_object_map_source_set/get APIs.
authorhermet <hermet@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 12 Jun 2012 07:23:46 +0000 (07:23 +0000)
committerhermet <hermet@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 12 Jun 2012 07:23:46 +0000 (07:23 +0000)
They does nothing and discarded since the evas_object_image_source_set/get is providing.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@71984 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

ChangeLog
src/lib/Evas.h
src/lib/canvas/evas_map.c

index c28514e..43a64de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * 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.
index 8f49b55..a1ef41a 100644 (file)
@@ -4551,29 +4551,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.
  *
  * This sets the map on a given object. It is copied from the @p map pointer,
index cc110c8..0f2ccf7 100644 (file)
@@ -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)
 {