From: yoz Date: Mon, 30 Jan 2012 17:41:42 +0000 (+0000) Subject: elementary: remove const from elm_box_children_get. We need free it X-Git-Tag: REL_F_I9500_20120323_1~17^2~814 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49078da7eeb4f4f870d184b98ac2a31ba877635a;p=framework%2Fuifw%2Felementary.git elementary: remove const from elm_box_children_get. We need free it git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@67605 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_box.c b/src/lib/elm_box.c index a3005f8..8b668a2 100644 --- a/src/lib/elm_box.c +++ b/src/lib/elm_box.c @@ -625,7 +625,7 @@ elm_box_transition_free(void *data) free(data); } -EAPI const Eina_List * +EAPI Eina_List * elm_box_children_get(const Evas_Object *obj) { ELM_CHECK_WIDTYPE(obj, widtype) NULL; diff --git a/src/lib/elm_box.h b/src/lib/elm_box.h index f0cd461..a29fdfa 100644 --- a/src/lib/elm_box.h +++ b/src/lib/elm_box.h @@ -271,7 +271,7 @@ EAPI void elm_box_unpack_all(Evas_Object *obj); * * @param obj The box object */ -EAPI const Eina_List *elm_box_children_get(const Evas_Object *obj); +EAPI Eina_List *elm_box_children_get(const Evas_Object *obj); /** * Set the space (padding) between the box's elements.