elm_gesture_layer: fix ecore_timer remaining bug.

This commit is contained in:
Seunggyun Kim 2013-04-17 14:06:22 +09:00 committed by Daniel Juyung Seo
parent 4cb1b57483
commit 6d980a03e7
3 changed files with 10 additions and 0 deletions

View File

@ -1340,3 +1340,7 @@
2013-05-06 WooHyun Jung
* Add elm_entry smart callback - "text,set,done".
2013-05-09 Seunggyun Kim
* Fix remained ecore timer issue when gesture layer was deleted.

View File

@ -227,6 +227,7 @@ Fixes:
* Fix gengrid does not work under the accessibility.
* Fix do not append NULL to genlist focus list.
* Fix elm_clock_first_interval_set writes wrong value.
* Fix remained ecore timer issue when gesture layer was deleted.
Removals:

View File

@ -3638,6 +3638,11 @@ _elm_gesture_layer_smart_del(Eo *obj, void *_pd, va_list *list EINA_UNUSED)
free(sd->gesture[i]);
}
if (sd->gest_taps_timeout)
{
ecore_timer_del(sd->gest_taps_timeout);
sd->gest_taps_timeout = NULL;
}
eo_do_super(obj, MY_CLASS, evas_obj_smart_del());
}