Fix warnings: shadow, unused-variable

This commit is contained in:
Jean-Philippe Andre 2016-03-18 14:10:39 +09:00
parent 386f9e7613
commit 7620f760ba
2 changed files with 1 additions and 4 deletions

View File

@ -424,7 +424,6 @@ _event_mouse_tracker(void *data)
{
int fx, fy, fw, fh, zx, zy, zw, zh, stride, iw, ih;
unsigned int *pixels, color;
char buf[32];
zw = zone->zoom.ideal_size.w < zone->w / 4 ?
zone->zoom.ideal_size.w : zone->w / 4;
@ -2492,7 +2491,6 @@ elm_main(int argc, char **argv)
else
{
Eina_List *l;
Zone *zone;
EINA_LIST_FOREACH(zones, l, zone)
{
if (!platform_funcs->zone_setup(zone))
@ -2566,7 +2564,7 @@ elm_main(int argc, char **argv)
{
while (zones)
{
Zone *zone = zones->data;
zone = zones->data;
evas_object_del(zone->win);
}
}

View File

@ -246,7 +246,6 @@ x_post_setup(void)
{
const Eina_List *l;
const Zone *zone;
void *ptr;
if (eina_list_count(zones) > 1)
{