seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=13c307abe6c8c7f659f4220f6e08c6bda7ad1d7b

commit 13c307abe6c8c7f659f4220f6e08c6bda7ad1d7b
Author: Daniel Juyung Seo <[email protected]>
Date:   Fri Jan 24 10:51:12 2014 +0900

    naviframe: Better structure packing for naviframe item and added more
    description about item structure members.
---
 src/lib/elm_widget_naviframe.h | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/lib/elm_widget_naviframe.h b/src/lib/elm_widget_naviframe.h
index 1b4d3fc..1b347da 100644
--- a/src/lib/elm_widget_naviframe.h
+++ b/src/lib/elm_widget_naviframe.h
@@ -54,11 +54,12 @@ struct _Elm_Naviframe_Item
    Evas_Coord   minw;
    Evas_Coord   minh;
 
+   int          ref;
+
    Eina_Bool    title_enabled : 1;
    Eina_Bool    unfocusable : 1;
-   Eina_Bool    popping : 1;
-   Eina_Bool    delete_me : 1;
-   int          ref;
+   Eina_Bool    popping : 1; /*<< a flag to notify the item is on poping. this 
flag is set true at the start of item pop. */
+   Eina_Bool    delete_me : 1; /*<< a flag to notify the item is on deletion. 
this flag is set true at the start of item deletion. */
 };
 
 typedef struct _Elm_Naviframe_Content_Item_Pair 
Elm_Naviframe_Content_Item_Pair;

-- 


Reply via email to