Mercurial > pidgin
diff src/plugins.c @ 2273:0b5c3338fa3d
[gaim-migrate @ 2283]
One of the girls on the floor of my sister's dorm lost both her parents when their plane was hijacked and crashed into the World Trade Center. my girlfriend's boss's sister-in-law's brother died when the building collapsed. my parents flew to atlanta on monday; they're safe but currently stranded there. they had planned on flying to Raleigh, NC today but now are just hoping to be able to fly home soon. how did this happen?
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 12 Sep 2001 21:29:32 +0000 |
| parents | eb2cadb18479 |
| children | f2150073cd41 |
line wrap: on
line diff
--- a/src/plugins.c Wed Sep 12 18:57:46 2001 +0000 +++ b/src/plugins.c Wed Sep 12 21:29:32 2001 +0000 @@ -772,12 +772,12 @@ } break; - /* struct gaim_connection *, char **, char ** */ + /* struct gaim_connection *, char **, char **, guint32 */ case event_im_recv: { void (*function)(struct gaim_connection *, char **, char **, - void *) = g->function; - (*function)(arg1, arg2, arg3, g->data); + guint32, void *) = g->function; + (*function)(arg1, arg2, arg3, (guint32)arg4, g->data); } break; @@ -832,7 +832,6 @@ case event_chat_buddy_leave: case event_away: case event_back: - case event_im_displayed_rcvd: { void (*function)(struct gaim_connection *, char *, char *, void *) = g->function; @@ -840,6 +839,15 @@ } break; + /* struct gaim_connection *, char *, char *, guint32 */ + case event_im_displayed_rcvd: + { + void (*function)(struct gaim_connection *, char *, char *, + guint32, void *) = g->function; + (*function)(arg1, arg2, arg3, (guint32)arg4, g->data); + } + break; + /* struct gaim_connection *, char *, int */ case event_warned: {
