comparison plugins/perl/common/AccountOpts.xs @ 11130:3f3bc7f1b6bf

[gaim-migrate @ 13186] Fixed warning messages committer: Tailor Script <tailor@pidgin.im>
author John H. Kelm <johnkelm@gmail.com>
date Tue, 19 Jul 2005 10:03:10 +0000
parents 134d0001983d
children ece127d56c14
comparison
equal deleted inserted replaced
11129:0754ce8f1122 11130:3f3bc7f1b6bf
81 81
82 void 82 void
83 gaim_account_option_get_list(option) 83 gaim_account_option_get_list(option)
84 Gaim::Account::Option option 84 Gaim::Account::Option option
85 PREINIT: 85 PREINIT:
86 GList *l; 86 const GList *l;
87 PPCODE: 87 PPCODE:
88 for (l = gaim_account_option_get_list(option); l != NULL; l = l->next) { 88 for (l = gaim_account_option_get_list(option); l != NULL; l = l->next) {
89 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::ListEntry"))); 89 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::ListEntry")));
90 } 90 }
91 91