seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=2c53db903757a1a9602e07bb009bfa3448cdf961
commit 2c53db903757a1a9602e07bb009bfa3448cdf961 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Thu Jan 2 08:49:26 2014 +0900 elm_widget: Partial update for widget smart data comments. --- src/lib/elm_widget.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_widget.h b/src/lib/elm_widget.h index f9484c3..28d1077 100644 --- a/src/lib/elm_widget.h +++ b/src/lib/elm_widget.h @@ -434,8 +434,8 @@ typedef struct _Elm_Widget_Smart_Data Eina_Bool can_access : 1; Eina_Bool highlighted : 1; Eina_Bool highlight_root : 1; - Eina_Bool on_translate : 1; - Eina_Bool on_create : 1; + Eina_Bool on_translate : 1; /*<< This is true when any types of elm translate function is being called. */ + Eina_Bool on_create : 1; /*<< This is true when the widget is on creation(general widget constructor). */ } Elm_Widget_Smart_Data; /** --