Elm Glayer: Fixed code to match convention
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 17 Oct 2011 08:12:52 +0000 (08:12 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 17 Oct 2011 08:12:52 +0000 (08:12 +0000)
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@64129 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_gesture_layer.c

index f7789a8..cae6f13 100644 (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)