Revision: 16323
Author: thekingant
Date: 2006-06-23 23:21:02 -0700 (Fri, 23 Jun 2006)
ViewCVS: http://svn.sourceforge.net/gaim/?rev=16323&view=rev
Log Message:
-----------
Backport SVN revision #16320 from HEAD to v2_0_0
Original commit message:
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.
ViewCVS Links:
-------------
http://svn.sourceforge.net/gaim/?rev=16320&view=rev
Modified Paths:
--------------
branches/v2_0_0/src/conversation.c
Modified: branches/v2_0_0/src/conversation.c
===================================================================
--- branches/v2_0_0/src/conversation.c 2006-06-23 20:42:25 UTC (rev 16322)
+++ branches/v2_0_0/src/conversation.c 2006-06-24 06:21:02 UTC (rev 16323)
@@ -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");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|