Elm Glayer: Fixed code to match convention

Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 64129
This commit is contained in:
Aharon Hillel 2011-10-17 08:12:52 +00:00 committed by Tom Hacohen
parent ba51b99efb
commit 5cd614a820
1 changed files with 3 additions and 3 deletions

View File

@ -975,9 +975,9 @@ _event_history_clear(Evas_Object *obj)
{ /* We do not clear a long-tap gesture if fingers still on surface */
/* and gesture timer still pending to test gesture state */
Long_Tap_Type *st = wd->gesture[ELM_GESTURE_N_LONG_TAPS]->data;
if (st) /* st not allocated if clear occurs before 1st input */
if((!eina_list_count(st->touched)) || (!st->timeout))
_n_long_tap_test_reset(wd->gesture[ELM_GESTURE_N_LONG_TAPS]);
if ((st) && /* st not allocated if clear occurs before 1st input */
((!eina_list_count(st->touched)) || (!st->timeout)))
_n_long_tap_test_reset(wd->gesture[ELM_GESTURE_N_LONG_TAPS]);
}
if (wd->dbl_timeout)