From c3963d06f5b7f5f2ef9da7beb994667009687e00 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Sun, 30 Nov 2014 13:17:24 +0900 Subject: [PATCH] widget: Add/Fix internal documentations. --- legacy/elementary/src/lib/elm_panel.c | 2 +- legacy/elementary/src/lib/elm_widget.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/legacy/elementary/src/lib/elm_panel.c b/legacy/elementary/src/lib/elm_panel.c index 21c548412d..ebe43c9d75 100644 --- a/legacy/elementary/src/lib/elm_panel.c +++ b/legacy/elementary/src/lib/elm_panel.c @@ -1005,7 +1005,7 @@ _elm_panel_evas_object_smart_del(Eo *obj, Elm_Panel_Data *sd) ELM_SAFE_FREE(sd->timer, ecore_timer_del); - /* let's make our box object the *last* to be processed, since it + /* let's make our panel object the *last* to be processed, since it * may (smart) parent other sub objects here */ EINA_LIST_FOREACH(wd->subobjs, l, child) { diff --git a/legacy/elementary/src/lib/elm_widget.h b/legacy/elementary/src/lib/elm_widget.h index ff53d61570..520b6429b0 100644 --- a/legacy/elementary/src/lib/elm_widget.h +++ b/legacy/elementary/src/lib/elm_widget.h @@ -370,12 +370,12 @@ typedef struct _Elm_Widget_Smart_Class */ typedef struct _Elm_Widget_Smart_Data { - Evas_Object *obj; - Evas_Object *parent_obj; - Evas_Object *parent2; + Evas_Object *obj; /**< object pointer for this widget smart data */ + Evas_Object *parent_obj; /**< parent object of a widget in the elementary tree */ + Evas_Object *parent2; /**< parent object for an inlined window */ Evas_Coord x, y, w, h; - Eina_List *subobjs; - Evas_Object *resize_obj; + Eina_List *subobjs; /**< list of widgets' sub objects in the elementary tree */ + Evas_Object *resize_obj; /**< an unique object for each widget that shows the look of a widget. Resize object's geometry is same as the widget. This resize object is different from that of window's resize object. */ Evas_Object *hover_obj; Eina_List *tooltips, *cursors; Evas_Object *focus_previous, *focus_next;