From: Daniel Zaoui Date: Tue, 29 Apr 2014 05:45:10 +0000 (+0300) Subject: Eolian: fix elm_widget.eo X-Git-Tag: v1.10.0-beta1~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9f05fe7528cdda8fcddc29ad755ee514af952dd;p=platform%2Fupstream%2Felementary.git Eolian: fix elm_widget.eo part_text has to be an extra property, not a method. --- diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo index 1656af2..8eb1d44 100644 --- a/src/lib/elm_widget.eo +++ b/src/lib/elm_widget.eo @@ -421,6 +421,20 @@ abstract Elm_Widget (Evas_Smart, Elm_Interface_Atspi_Widget) Evas_Object *parent; } } + part_text { + set { + /*@ No description supplied by the EAPI. */ + } + get { + /*@ No description supplied by the EAPI. */ + } + keys { + const char *part; + } + values { + const char *label; + } + } } methods { newest_focus_order_get { @@ -729,21 +743,6 @@ abstract Elm_Widget (Evas_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ legacy null; } - part_text_set { - /*@ No description supplied by the EAPI. */ - params { - @in const char *part; - @in const char *label; - } - } - part_text_get { - /*@ No description supplied by the EAPI. */ - const; - return const char *; - params { - @in const char *part; - } - } theme_apply { /*@ 'Virtual' function on the widget being re-themed. */ return Eina_Bool;