* remove shadow declarations
authorVincent Torri <vincent.torri@gmail.com>
Wed, 21 Apr 2010 07:46:03 +0000 (07:46 +0000)
committerVincent Torri <vincent.torri@gmail.com>
Wed, 21 Apr 2010 07:46:03 +0000 (07:46 +0000)
 * missing initializer in Evas_Smart_Class (the data field was missing)

SVN revision: 48197

src/lib/elm_widget.c
src/lib/elm_win.c
src/lib/els_icon.c
src/lib/els_pan.c
src/lib/els_scroller.c

index 98d73c3..cc1d999 100644 (file)
@@ -1458,6 +1458,7 @@ _smart_init(void)
               NULL,
               NULL,
                NULL,
+               NULL,
                NULL
          };
        _e_smart = evas_smart_class_new(&sc);
index 464618e..8e1c2d4 100644 (file)
@@ -395,13 +395,13 @@ _elm_win_client_message(void *data, int type __UNUSED__, void *event)
      {
         if (e->data.l[0] == win->xwin)
           {
-             Evas *e = evas_object_evas_get(win->win_obj);
-             if (e)
+             Evas *evas = evas_object_evas_get(win->win_obj);
+             if (evas)
                {
                   edje_file_cache_flush();
                   edje_collection_cache_flush();
-                  evas_image_cache_flush(e);
-                  evas_font_cache_flush(e);
+                  evas_image_cache_flush(evas);
+                  evas_font_cache_flush(evas);
                }
           }
      }
@@ -409,14 +409,14 @@ _elm_win_client_message(void *data, int type __UNUSED__, void *event)
      {
         if (e->data.l[0] == win->xwin)
           {
-             Evas *e = evas_object_evas_get(win->win_obj);
-             if (e)
+             Evas *evas = evas_object_evas_get(win->win_obj);
+             if (evas)
                {
                   edje_file_cache_flush();
                   edje_collection_cache_flush();
-                  evas_image_cache_flush(e);
-                  evas_font_cache_flush(e);
-                  evas_render_dump(e);
+                  evas_image_cache_flush(evas);
+                  evas_font_cache_flush(evas);
+                  evas_render_dump(evas);
                }
           }
      }
index 3a870e9..371b16b 100644 (file)
@@ -351,6 +351,7 @@ _smart_init(void)
               NULL,
               NULL,
                NULL,
+               NULL,
                NULL
          };
        _e_smart = evas_smart_class_new(&sc);
index 0e42abb..f1982fc 100644 (file)
@@ -265,8 +265,9 @@ _smart_init(void)
               NULL,
               NULL,
               NULL,
-               NULL,
-               NULL
+              NULL,
+              NULL,
+              NULL
          };
        _smart = evas_smart_class_new(&sc);
      }
index 8542edc..a781c5e 100644 (file)
@@ -2162,6 +2162,7 @@ _smart_init(void)
               NULL,
               NULL,
                NULL,
+               NULL,
                NULL
          };
        _smart = evas_smart_class_new(&sc);