comparison pidgin/gtkpounce.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 2ad2e3490b23
children 917c597beb97
comparison
equal deleted inserted replaced
30862:922c8c553758 30863:351d07aefb09
192 static void 192 static void
193 add_pounce_to_treeview(GtkListStore *model, PurplePounce *pounce) 193 add_pounce_to_treeview(GtkListStore *model, PurplePounce *pounce)
194 { 194 {
195 GtkTreeIter iter; 195 GtkTreeIter iter;
196 PurpleAccount *account; 196 PurpleAccount *account;
197 PurplePounceEvent events;
198 gboolean recurring; 197 gboolean recurring;
199 const char *pouncer; 198 const char *pouncer;
200 const char *pouncee; 199 const char *pouncee;
201 GdkPixbuf *pixbuf; 200 GdkPixbuf *pixbuf;
202 201
203 account = purple_pounce_get_pouncer(pounce); 202 account = purple_pounce_get_pouncer(pounce);
204
205 events = purple_pounce_get_events(pounce);
206 203
207 pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_MEDIUM); 204 pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_MEDIUM);
208 205
209 pouncer = purple_account_get_username(account); 206 pouncer = purple_account_get_username(account);
210 pouncee = purple_pounce_get_pouncee(pounce); 207 pouncee = purple_pounce_get_pouncee(pounce);