most probably this should have been EINA_FALSE

SVN revision: 70935
This commit is contained in:
Hannes Janetzek 2012-05-11 19:20:31 +00:00
parent 9b13ef9117
commit 82fee2aff2
1 changed files with 2 additions and 2 deletions

View File

@ -1252,7 +1252,7 @@ _elm_colorselector_smart_event(Evas_Object *obj,
/*when focus is shifted to component start from first color type*/
sd->sel_color_type = HUE;
}
else return FALSE;
else return EINA_FALSE;
}
else if (sd->focused == ELM_COLORSELECTOR_COMPONENTS)
{
@ -1260,7 +1260,7 @@ _elm_colorselector_smart_event(Evas_Object *obj,
/*Append color type only if next color bar is available*/
if (edje_object_part_swallow_get(sd->col_bars_area, colorbar_s))
sd->sel_color_type = sd->sel_color_type + 1;
else return FALSE;
else return EINA_FALSE;
}
}
else return EINA_FALSE;