comparison src/core.c @ 5580:86456ec3ca25

[gaim-migrate @ 5984] More nifty stuff! Accounts now get converted, and other niceties. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 31 May 2003 02:27:03 +0000
parents 9eb5b13fd412
children 022786c7ab53
comparison
equal deleted inserted replaced
5579:e0146fcc4718 5580:86456ec3ca25
234 */ 234 */
235 case CUI_USER_SIGNON: 235 case CUI_USER_SIGNON:
236 if (!data) 236 if (!data)
237 return; 237 return;
238 memcpy(&id, data, sizeof(id)); 238 memcpy(&id, data, sizeof(id));
239 account = g_slist_nth_data(gaim_accounts, id); 239 account = g_list_nth_data(gaim_accounts_get_all(), id);
240 if (account) 240 if (account)
241 serv_login(account); 241 serv_login(account);
242 /* don't need to do anything here because the UI will get updates from other handlers */ 242 /* don't need to do anything here because the UI will get updates from other handlers */
243 break; 243 break;
244 default: 244 default: