Remove duplicate if (This is already checked a few lines above, so not

needed).



SVN revision: 50272
This commit is contained in:
Christopher Michael 2010-07-15 20:52:29 +00:00
parent 9b3cf97523
commit 6f110efad1
1 changed files with 2 additions and 3 deletions

View File

@ -120,9 +120,8 @@ _ecore_evas_buffer_render(Ecore_Evas *ee)
Eina_Rectangle *r;
EINA_LIST_FOREACH(updates, l, r)
if (ee->engine.buffer.image)
evas_object_image_data_update_add(ee->engine.buffer.image,
r->x, r->y, r->w, r->h);
evas_object_image_data_update_add(ee->engine.buffer.image,
r->x, r->y, r->w, r->h);
}
if (updates)
{