From 8bb60f12f0db9ce035c98ec9eb1a03a8481a179c Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Fri, 9 Aug 2013 19:00:16 +0900 Subject: [PATCH] elm_image: fix structure order to avoid hole in it. --- src/lib/elm_widget_image.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/elm_widget_image.h b/src/lib/elm_widget_image.h index b8967c1..cb4b11e 100644 --- a/src/lib/elm_widget_image.h +++ b/src/lib/elm_widget_image.h @@ -31,16 +31,18 @@ struct _Elm_Image_Smart_Data Evas_Object *hit_rect; Evas_Object *img; Evas_Object *prev_img; + Ecore_Timer *anim_timer; + + double scale; + double frame_duration; Evas_Coord img_x, img_y, img_w, img_h; int load_size; - double scale; - Elm_Image_Orient orient; - int frame_count; int cur_frame; - double frame_duration; + + Elm_Image_Orient orient; Eina_Bool aspect_fixed : 1; Eina_Bool fill_inside : 1; @@ -54,8 +56,6 @@ struct _Elm_Image_Smart_Data Eina_Bool edje : 1; Eina_Bool anim : 1; Eina_Bool play : 1; - - Ecore_Timer *anim_timer; }; /** -- 2.7.4