comparison src/gtkconn.c @ 11536:16796e09b9c1

[gaim-migrate @ 13790] GaimBuddy->uc is gone! at last! (it survived probably > 5 years). You'll want to make sure any plugins that make use of GaimBuddy in any way are recompiled, otherwise you'll have el-bizarro crashes. You probably want to make sure you make clean && make && make install too. Maybe reformatting your hard disk to remove any references to uc would be a good idea too. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 14 Sep 2005 00:54:21 +0000
parents 1116993aadd2
children 5909ea4e7746
comparison
equal deleted inserted replaced
11535:bb98b2c09224 11536:16796e09b9c1
67 if (!gtkblist) 67 if (!gtkblist)
68 return; 68 return;
69 gtk_gaim_status_box_set_connecting(GTK_GAIM_STATUS_BOX(gtkblist->statusbox), 69 gtk_gaim_status_box_set_connecting(GTK_GAIM_STATUS_BOX(gtkblist->statusbox),
70 (gaim_connections_get_connecting() != NULL)); 70 (gaim_connections_get_connecting() != NULL));
71 account = gaim_connection_get_account(gc); 71 account = gaim_connection_get_account(gc);
72 g_hash_table_remove(hash, account); 72 if (hash != NULL)
73 g_hash_table_remove(hash, account);
73 if (accountReconnecting == NULL) 74 if (accountReconnecting == NULL)
74 return; 75 return;
75 accountReconnecting = g_slist_remove(accountReconnecting, account); 76 accountReconnecting = g_slist_remove(accountReconnecting, account);
76 if (accountReconnecting == NULL) 77 if (accountReconnecting == NULL)
77 gtk_gaim_status_box_set_error(GTK_GAIM_STATUS_BOX(gtkblist->statusbox), NULL); 78 gtk_gaim_status_box_set_error(GTK_GAIM_STATUS_BOX(gtkblist->statusbox), NULL);