comparison libpurple/protocols/qq/group.c @ 30863:351d07aefb09

Kill off many dead assignments and any useless remaining variables. I think some of those QQ ones were actual logic errors, too. Let me know if there were any side-effects that were cut.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 23 Aug 2010 00:52:24 +0000
parents 8f757b2139d2
children
comparison
equal deleted inserted replaced
30862:922c8c553758 30863:351d07aefb09
117 } 117 }
118 118
119 /* free roomlist space, I have no idea when this one is called... */ 119 /* free roomlist space, I have no idea when this one is called... */
120 void qq_roomlist_cancel(PurpleRoomlist *list) 120 void qq_roomlist_cancel(PurpleRoomlist *list)
121 { 121 {
122 qq_data *qd;
123 PurpleConnection *gc; 122 PurpleConnection *gc;
124 123
125 g_return_if_fail(list != NULL); 124 g_return_if_fail(list != NULL);
126 gc = purple_account_get_connection(list->account); 125 gc = purple_account_get_connection(list->account);
127 126
128 qd = (qq_data *) gc->proto_data;
129 purple_roomlist_set_in_progress(list, FALSE); 127 purple_roomlist_set_in_progress(list, FALSE);
130 purple_roomlist_unref(list); 128 purple_roomlist_unref(list);
131 } 129 }