Remove unused variable about source visibility.
authorChristopher Michael <cpmichael1@comcast.net>
Fri, 9 Nov 2012 17:54:09 +0000 (17:54 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Fri, 9 Nov 2012 17:54:09 +0000 (17:54 +0000)
Signed-off-by: Christopher Michael <cpmichael1@comcast.net>
SVN revision: 79033

src/lib/evas/canvas/evas_object_main.c

index 8c80eae0c6eb37fdd77d345b9c449b80970a5800..ab51a3f61c94e50b3d66cbe0cf8d77e002fa9073 100644 (file)
@@ -794,7 +794,7 @@ _size_set(Eo *eo_obj, void *_pd, va_list *list)
    Evas_Coord h = va_arg(*list, Evas_Coord);
    Eina_Bool is, was = EINA_FALSE;
    Eina_Bool pass = EINA_FALSE, freeze = EINA_FALSE;
-   Eina_Bool source_invisible = EINA_FALSE;
+   /* Eina_Bool source_invisible = EINA_FALSE; */
 
    if (obj->delete_me) return;
    if (w < 0) w = 0; if (h < 0) h = 0;
@@ -813,7 +813,7 @@ _size_set(Eo *eo_obj, void *_pd, va_list *list)
      {
         pass = evas_event_passes_through(eo_obj, obj);
         freeze = evas_event_freezes_through(eo_obj, obj);
-        source_invisible = evas_object_is_source_invisible(eo_obj, obj);
+        /* source_invisible = evas_object_is_source_invisible(eo_obj, obj); */
         if ((!pass) && (!freeze))
           was = evas_object_is_in_output_rect(eo_obj, obj,
                                               obj->layer->evas->pointer.x,