comparison src/protocols/msn/table.c @ 10345:2e01c503aa4f

[gaim-migrate @ 11556] Patch 1078151 from Felipe Contreras to fix some more MSN bugs: "User Dislpay messages, and other less used, did not set an slpcall, so the callback that should not be called, was called (in some very special cases)." ... "Here it goes the real real one, as far as I can tell. Cleaning + organizing + documentation + hard bug fix = big patch." -- Felipe Contreras I also fixed drag-and-drop to conversation window file transfers (which I had broken when I fixed some other dnd thing), made the debug output of the autoreconnect plugin more useful, and stopped the message notification plugin notifying you for messages sent by ignored users. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 11 Dec 2004 20:01:58 +0000
parents 700f8fb9e581
children bc30c6270d9f
comparison
equal deleted inserted replaced
10344:5976491e07a7 10345:2e01c503aa4f
115 g_hash_table_insert(table->errors, answer, cb); 115 g_hash_table_insert(table->errors, answer, cb);
116 } 116 }
117 117
118 void 118 void
119 msn_table_add_msg_type(MsnTable *table, 119 msn_table_add_msg_type(MsnTable *table,
120 char *type, MsnMsgCb cb) 120 char *type, MsnMsgTypeCb cb)
121 { 121 {
122 g_return_if_fail(table != NULL); 122 g_return_if_fail(table != NULL);
123 g_return_if_fail(type != NULL); 123 g_return_if_fail(type != NULL);
124 g_return_if_fail(cb != NULL); 124 g_return_if_fail(cb != NULL);
125 125