E: remove extraneous parentheses

SVN revision: 65994
This commit is contained in:
Vincent Torri 2011-12-07 20:34:45 +00:00
parent 2ff1054ba2
commit 1c8b4d5c3d
3 changed files with 5 additions and 5 deletions

View File

@ -64,11 +64,11 @@ main(int argc, char **argv)
"do not use it.\n");
exit(0);
}
else if ((i == 1))
else if (i == 1)
sig = atoi(argv[i]); // signal
else if ((i == 2))
else if (i == 2)
pid = atoi(argv[i]); // E's pid
else if ((i == 3))
else if (i == 3)
comp_win = atoi(argv[i]); // Composite Alert Window
}

View File

@ -559,7 +559,7 @@ e_bindings_edge_del(E_Binding_Context ctxt, E_Zone_Edge edge, E_Binding_Modifier
EINA_LIST_FOREACH(edge_bindings, l, bind)
{
if ((bind->edge == edge))
if (bind->edge == edge)
{
if ((bind->ctxt == ctxt) &&
(bind->mod == mod) &&

View File

@ -377,7 +377,7 @@ e_editable_cursor_pos_set(Evas_Object *editable, int pos)
return;
pos = E_CLAMP(pos, 0, sd->unicode_length);
if ((sd->cursor_pos == pos)) return;
if (sd->cursor_pos == pos) return;
sd->cursor_pos = pos;
_e_editable_cursor_update(editable);