Mercurial > pidgin
changeset 13859:60278852c20c
[gaim-migrate @ 16320]
sf patch #1511450, from Wan Hing Wah
Fix a segfault when catching certain signals because
the wrong parameters were passed to those signals.
My bad.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 23 Jun 2006 16:59:12 +0000 |
parents | aa1c97f5e6eb |
children | c1e3f7c75c3f |
files | src/conversation.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/conversation.c Fri Jun 23 10:25:47 2006 +0000 +++ b/src/conversation.c Fri Jun 23 16:59:12 2006 +0000 @@ -58,7 +58,7 @@ gaim_conv_im_stop_typing_timeout(im); gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typing-stopped", c); + "buddy-typing-stopped", c->account, c->name); return FALSE; } @@ -83,7 +83,7 @@ serv_send_typing(gc, name, GAIM_TYPED); gaim_signal_emit(gaim_conversations_get_handle(), - "buddy-typed", conv); + "buddy-typed", conv->account, conv->name); gaim_debug(GAIM_DEBUG_MISC, "conversation", "typed...\n"); }