Evas image: Add const to the obj parameter.

Patch by Daniel Zaoui.

SVN revision: 70433
This commit is contained in:
Tom Hacohen 2012-04-24 11:01:53 +00:00
parent 2c66050b65
commit 77112d59fd
2 changed files with 2 additions and 2 deletions

View File

@ -7491,7 +7491,7 @@ EAPI Eina_Bool evas_object_image_source_set (Evas_Obj
*
* @see evas_object_image_source_set() for more details
*/
EAPI Evas_Object *evas_object_image_source_get (Evas_Object *obj) EINA_ARG_NONNULL(1);
EAPI Evas_Object *evas_object_image_source_get (const Evas_Object *obj) EINA_ARG_NONNULL(1);
/**
* Clear the source object on a proxy image object.

View File

@ -451,7 +451,7 @@ evas_object_image_source_set(Evas_Object *obj, Evas_Object *src)
EAPI Evas_Object *
evas_object_image_source_get(Evas_Object *obj)
evas_object_image_source_get(const Evas_Object *obj)
{
Evas_Object_Image *o;