comparison src/account.c @ 10404:ce098e226486

[gaim-migrate @ 11649] Make some things better, and some whitespace cleanup. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 24 Dec 2004 00:05:36 +0000
parents 6a043ae92db6
children bed2c96bc1fb
comparison
equal deleted inserted replaced
10403:e5455f1dc9b6 10404:ce098e226486
1629 g_return_if_fail(ui != NULL); 1629 g_return_if_fail(ui != NULL);
1630 1630
1631 for (l = gaim_accounts_get_all(); l != NULL; l = l->next) { 1631 for (l = gaim_accounts_get_all(); l != NULL; l = l->next) {
1632 account = l->data; 1632 account = l->data;
1633 1633
1634 /* TODO: Shouldn't be be using some sort of saved status here? */
1634 if (gaim_account_get_enabled(account, ui)) 1635 if (gaim_account_get_enabled(account, ui))
1635 gaim_account_connect(account, gaim_account_get_status(account, "online")); 1636 gaim_account_connect(account, gaim_account_get_status(account, "online"));
1636 } 1637 }
1637 } 1638 }
1638 1639