jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2b7f9b6dfd372af81fd691ac0a0a87b53f8cce34
commit 2b7f9b6dfd372af81fd691ac0a0a87b53f8cce34 Author: Jean-Philippe Andre <[email protected]> Date: Fri Sep 22 13:38:59 2017 +0900 widget: Add tiny doc for Efl.Ui.Widget.Part --- src/lib/elementary/efl_ui_widget_part.eo | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/efl_ui_widget_part.eo b/src/lib/elementary/efl_ui_widget_part.eo index e848686b5b..2ddceab417 100644 --- a/src/lib/elementary/efl_ui_widget_part.eo +++ b/src/lib/elementary/efl_ui_widget_part.eo @@ -1,8 +1,12 @@ class Efl.Ui.Widget.Part (Efl.Object) { + [[This is the base class for all "Part" handles in Efl.Ui widgets. + + Since objects of this type are returned by @Efl.Part.part, their lifetime + is limited to exactly one function call only. Each widget class should + expose more specific types for their API-defined parts. + ]] data: Elm_Part_Data; - methods { - } implements { Efl.Object.destructor; } --
