Eolian: fix elm_widget.eo

part_text has to be an extra property, not a method.
This commit is contained in:
Daniel Zaoui 2014-04-29 08:45:10 +03:00
parent 5757574678
commit 0491d581c0
1 changed files with 14 additions and 15 deletions

View File

@ -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;