comparison plugins/signals-test.c @ 7516:4749299f199a

[gaim-migrate @ 8129] Update signals-test.c for the changes in received-chat-msg. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 15 Nov 2003 08:28:36 +0000
parents 798e5dbb072f
children 767d3db53e17
comparison
equal deleted inserted replaced
7515:6cd392e0d6ea 7516:4749299f199a
242 gaim_account_get_username(account), buffer, id); 242 gaim_account_get_username(account), buffer, id);
243 } 243 }
244 244
245 static gboolean 245 static gboolean
246 received_chat_msg_cb(GaimAccount *account, char **sender, char **buffer, 246 received_chat_msg_cb(GaimAccount *account, char **sender, char **buffer,
247 int id, void *data) 247 GaimConversation *chat, void *data)
248 { 248 {
249 gaim_debug(GAIM_DEBUG_MISC, "signals test", 249 gaim_debug(GAIM_DEBUG_MISC, "signals test",
250 "received-chat-msg (%s, %s, %s, %s, %d)\n", 250 "received-chat-msg (%s, %s, %s, %s, %s)\n",
251 gaim_account_get_username(account), *sender, *buffer, id); 251 gaim_account_get_username(account), *sender, *buffer,
252 gaim_conversation_get_name(chat));
252 253
253 return FALSE; 254 return FALSE;
254 } 255 }
255 256
256 static void 257 static void