gotcha rasties.

but let's do it for all of 'em :)


SVN revision: 8697
This commit is contained in:
rephorm 2004-01-28 04:48:52 +00:00 committed by rephorm
parent 3dab963454
commit 63629f7822
1 changed files with 4 additions and 3 deletions

View File

@ -137,8 +137,9 @@ evas_event_feed_mouse_down_data(Evas *e, int b, const void *data)
ev.canvas.y = e->pointer.canvas_y;
ev.data = (void *)data;
ev.modifiers = &(e->modifiers);
ev.locks = &(e->locks);
evas_object_event_callback_call(obj, EVAS_CALLBACK_MOUSE_DOWN, &ev);
ev.locks = &(e->locks);
if (!e->events_frozen)
evas_object_event_callback_call(obj, EVAS_CALLBACK_MOUSE_DOWN, &ev);
}
if (copy) copy = evas_list_free(copy);
}
@ -170,7 +171,7 @@ evas_event_feed_mouse_wheel_data(Evas *e, int direction, int z, const void *data
ev.data = (void *) data;
ev.modifiers = &(e->modifiers);
ev.locks = &(e->locks);
if (!e->events_frozen)
evas_object_event_callback_call(obj, EVAS_CALLBACK_MOUSE_WHEEL, &ev);
}