Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/canvas


Modified Files:
        evas_callbacks.c 


Log Message:
take care of mouse wheel callbacks in _clear() and _cleanup()
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/canvas/evas_callbacks.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- evas_callbacks.c    11 Dec 2003 11:20:40 -0000      1.14
+++ evas_callbacks.c    12 Jan 2004 21:34:50 -0000      1.15
@@ -51,6 +51,7 @@
    evas_object_event_callback_list_post_free(&(obj->callbacks->down));
    evas_object_event_callback_list_post_free(&(obj->callbacks->up));
    evas_object_event_callback_list_post_free(&(obj->callbacks->move));
+   evas_object_event_callback_list_post_free(&(obj->callbacks->wheel));
    evas_object_event_callback_list_post_free(&(obj->callbacks->free));
    evas_object_event_callback_list_post_free(&(obj->callbacks->key_down));
    evas_object_event_callback_list_post_free(&(obj->callbacks->key_up));
@@ -66,6 +67,7 @@
        (!obj->callbacks->down) &&
        (!obj->callbacks->up) &&
        (!obj->callbacks->move) &&
+       (!obj->callbacks->wheel) &&
        (!obj->callbacks->free) &&
        (!obj->callbacks->key_down) &&
        (!obj->callbacks->key_up) &&
@@ -92,6 +94,7 @@
    evas_object_event_callback_list_free(&(obj->callbacks->down));
    evas_object_event_callback_list_free(&(obj->callbacks->up));
    evas_object_event_callback_list_free(&(obj->callbacks->move));
+   evas_object_event_callback_list_free(&(obj->callbacks->wheel));
    evas_object_event_callback_list_free(&(obj->callbacks->free));
    evas_object_event_callback_list_free(&(obj->callbacks->key_down));
    evas_object_event_callback_list_free(&(obj->callbacks->key_up));




-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to