comparison src/gaimrc.c @ 5035:628681ec8a5e

[gaim-migrate @ 5378] cvs compiles again. gotta love the c restriction on where you can declare variables. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 05 Apr 2003 12:30:10 +0000
parents cb700c07ee07
children abc8489b2e8f
comparison
equal deleted inserted replaced
5034:4691c5936c01 5035:628681ec8a5e
1621 struct gaim_account *account; 1621 struct gaim_account *account;
1622 1622
1623 debug_printf("*** Loading pounces...\n"); 1623 debug_printf("*** Loading pounces...\n");
1624 1624
1625 for (l = buddy_pounces; l != NULL; l = l->next) { 1625 for (l = buddy_pounces; l != NULL; l = l->next) {
1626 ph = (struct pounce_placeholder *)l->data;
1627 GaimPounceEvent events = GAIM_POUNCE_NONE; 1626 GaimPounceEvent events = GAIM_POUNCE_NONE;
1628 GaimGtkPounceAction actions = GAIM_GTKPOUNCE_NONE; 1627 GaimGtkPounceAction actions = GAIM_GTKPOUNCE_NONE;
1628 ph = (struct pounce_placeholder *)l->data;
1629 1629
1630 account = gaim_account_find(ph->pouncer, ph->protocol); 1630 account = gaim_account_find(ph->pouncer, ph->protocol);
1631 1631
1632 old_pounce_opts_to_new(ph->options, &events, &actions); 1632 old_pounce_opts_to_new(ph->options, &events, &actions);
1633 1633