comparison src/conversation.c @ 11171:ebb02ea3c789

[gaim-migrate @ 13272] Moved DBUS init call from gtkmain.c to core.c Reimplemented DBUS bindings mechamism to use low-level GLib bindings as described in my last blog entry. This way plugins can add new DBUS methods on the fly. Also wrote an example plugin that demonstrate how to do it. committer: Tailor Script <tailor@pidgin.im>
author Piotr Zielinski <zielaj>
date Sat, 30 Jul 2005 00:23:21 +0000
parents 1c5398ccbeb0
children e5aa4398003e
comparison
equal deleted inserted replaced
11170:0e9e2b923d09 11171:ebb02ea3c789
873 873
874 if (conv->u.im->icon != NULL) 874 if (conv->u.im->icon != NULL)
875 gaim_buddy_icon_unref(conv->u.im->icon); 875 gaim_buddy_icon_unref(conv->u.im->icon);
876 conv->u.im->icon = NULL; 876 conv->u.im->icon = NULL;
877 877
878 GAIM_DBUS_UNREGISTER_POINTER(conv->u.im);
878 g_free(conv->u.im); 879 g_free(conv->u.im);
879 conv->u.im = NULL; 880 conv->u.im = NULL;
880 881
881 ims = g_list_remove(ims, conv); 882 ims = g_list_remove(ims, conv);
882 } 883 }