Mercurial > pidgin
comparison src/conversation.c @ 9909:ebca3bbc6719
[gaim-migrate @ 10801]
(12:58:49) nosnilmot: LSchiere: I've got a few patches :) 1) Avoids a g_log
when closing conversations on disconnected accounts
http://nosnilmot.com/patches/gaim-0.83cvs-gtkconv-glog-quieter.patch
(12:59:20) nosnilmot: 2) Some conversation signal fix-lets, which reduces
g_log warnings when closing gaim with conversations open
http://nosnilmot.com/patches/gaim-0.83cvs-conv-signal-fixes.patch
(12:59:45) nosnilmot: 3) Drag-and-drop buddy support for the Invite dialog
: http://nosnilmot.com/patches/gaim-0.83cvs-invite-dnd.patch
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Sun, 29 Aug 2004 16:59:47 +0000 |
| parents | c28d5b45624e |
| children | 9fdbfe832fac |
comparison
equal
deleted
inserted
replaced
| 9908:e46e63a96f07 | 9909:ebca3bbc6719 |
|---|---|
| 2898 gaim_marshal_VOID__POINTER, NULL, 1, | 2898 gaim_marshal_VOID__POINTER, NULL, 1, |
| 2899 gaim_value_new(GAIM_TYPE_SUBTYPE, | 2899 gaim_value_new(GAIM_TYPE_SUBTYPE, |
| 2900 GAIM_SUBTYPE_CONVERSATION)); | 2900 GAIM_SUBTYPE_CONVERSATION)); |
| 2901 | 2901 |
| 2902 gaim_signal_register(handle, "conversation-updated", | 2902 gaim_signal_register(handle, "conversation-updated", |
| 2903 gaim_marshal_VOID__POINTER_UINT, NULL, 1, | 2903 gaim_marshal_VOID__POINTER_UINT, NULL, 2, |
| 2904 gaim_value_new(GAIM_TYPE_SUBTYPE, | 2904 gaim_value_new(GAIM_TYPE_SUBTYPE, |
| 2905 GAIM_SUBTYPE_CONVERSATION), | 2905 GAIM_SUBTYPE_CONVERSATION), |
| 2906 gaim_value_new(GAIM_TYPE_UINT)); | 2906 gaim_value_new(GAIM_TYPE_UINT)); |
| 2907 | 2907 |
| 2908 gaim_signal_register(handle, "deleting-conversation", | 2908 gaim_signal_register(handle, "deleting-conversation", |
| 3001 } | 3001 } |
| 3002 | 3002 |
| 3003 void | 3003 void |
| 3004 gaim_conversations_uninit(void) | 3004 gaim_conversations_uninit(void) |
| 3005 { | 3005 { |
| 3006 | 3006 while (conversations) |
| 3007 gaim_conversation_destroy((GaimConversation*)conversations->data); | |
| 3007 gaim_signals_unregister_by_instance(gaim_conversations_get_handle()); | 3008 gaim_signals_unregister_by_instance(gaim_conversations_get_handle()); |
| 3008 while (conversations) | 3009 } |
| 3009 gaim_conversation_destroy((GaimConversation*)conversations->data); | |
| 3010 } |
