Mon Feb 28 12:14:11 GMT 2000

(gilbertt)

Fixed Epplet_register_event_handler, prompted by email from Alexandre David
<adavid@DoCS.UU.SE>. His patch was incorrect though, and the proper fix is
to change the line where the event handler is called. (His patch changed
only one definition of it, in the wrong place, and broke epplets ;)


SVN revision: 2146
This commit is contained in:
Tom Gilbert 2000-02-28 12:15:29 +00:00
parent ee82293239
commit e1c288e567
2 changed files with 11 additions and 1 deletions

View File

@ -1983,3 +1983,13 @@ people have e > 0.16.4, the old behaviour is the default. Please ./configure
seconds ago) It should be much streamlined. Especially for you guys on
interesting hardware =)
-------------------------------------------------------------------------------
Mon Feb 28 12:14:11 GMT 2000
(gilbertt)
Fixed Epplet_register_event_handler, prompted by email from Alexandre David
<adavid@DoCS.UU.SE>. His patch was incorrect though, and the proper fix is
to change the line where the event handler is called. (His patch changed
only one definition of it, in the wrong place, and broke epplets ;)

View File

@ -1256,7 +1256,7 @@ Epplet_handle_event(XEvent * ev)
Epplet_gadget g = NULL;
if (event_func)
(*event_func) (ev, event_data);
(*event_func) (event_data, ev);
switch (ev->type)
{
case ClientMessage: