Elementary layout: Removed 'const' from elm_layout_content_get() API.

This API callers can handle layout content. ex)
evas_object_del(content);


SVN revision: 59035
This commit is contained in:
Daniel Juyung Seo 2011-04-29 12:33:36 +00:00
parent 4f6017e25e
commit 72f19bf5c1
2 changed files with 2 additions and 2 deletions

View File

@ -1043,7 +1043,7 @@ extern "C" {
EAPI Eina_Bool elm_layout_file_set(Evas_Object *obj, const char *file, const char *group) EINA_ARG_NONNULL(1);
EAPI Eina_Bool elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, const char *style) EINA_ARG_NONNULL(1);
EAPI void elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content) EINA_ARG_NONNULL(1);
EAPI const Evas_Object *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
EAPI Evas_Object *elm_layout_content_get(const Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
EAPI Evas_Object *elm_layout_content_unset(Evas_Object *obj, const char *swallow) EINA_ARG_NONNULL(1);
EAPI void elm_layout_text_set(Evas_Object *obj, const char *part, const char *text) EINA_ARG_NONNULL(1);
EAPI const char *elm_layout_text_get(const Evas_Object *obj, const char *part) EINA_ARG_NONNULL(1);

View File

@ -464,7 +464,7 @@ elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *conte
*
* @ingroup Layout
*/
EAPI const Evas_Object *
EAPI Evas_Object *
elm_layout_content_get(const Evas_Object *obj, const char *swallow)
{
Widget_Data *wd = elm_widget_data_get(obj);