Mercurial > pidgin.yaz
changeset 25030:986edbefc516
Remove the rest of the status node code
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 29 Jan 2009 08:23:12 +0000 |
parents | 025b7767810c |
children | 3cace6a9a28f |
files | libpurple/protocols/oscar/oscar.h libpurple/protocols/oscar/oscar_data.c |
diffstat | 2 files changed, 0 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.h Thu Jan 29 03:53:12 2009 +0000 +++ b/libpurple/protocols/oscar/oscar.h Thu Jan 29 08:23:12 2009 +0000 @@ -541,10 +541,6 @@ /** A linked list containing PeerConnections. */ GSList *peer_connections; - - /** Queue of ICQ Status Notes to request. */ - GSList *statusnotes_queue; - guint statusnotes_queue_timer; }; /* Valid for calling aim_icq_setstatus() and for aim_userinfo_t->icqinfo.status */
--- a/libpurple/protocols/oscar/oscar_data.c Thu Jan 29 03:53:12 2009 +0000 +++ b/libpurple/protocols/oscar/oscar_data.c Thu Jan 29 08:23:12 2009 +0000 @@ -91,14 +91,6 @@ g_free(od->requesticon->data); od->requesticon = g_slist_delete_link(od->requesticon, od->requesticon); } - while (od->statusnotes_queue) - { - g_free(od->statusnotes_queue->data); - od->statusnotes_queue = g_slist_delete_link(od->statusnotes_queue, - od->statusnotes_queue); - } - if (od->statusnotes_queue_timer > 0) - purple_timeout_remove(od->statusnotes_queue_timer); g_free(od->email); g_free(od->newp); g_free(od->oldp);