| 627 |
627 |
| 628 for (itg = purple_request_fields_get_groups(fields); |
628 for (itg = purple_request_fields_get_groups(fields); |
| 629 itg != NULL; |
629 itg != NULL; |
| 630 itg = g_list_next(itg)) |
630 itg = g_list_next(itg)) |
| 631 { |
631 { |
| 632 PurpleRequestFieldGroup *group = itg->data; |
632 PurpleRequestGroup *group = itg->data; |
| 633 GList *itf; |
633 GList *itf; |
| 634 |
634 |
| 635 for (itf = purple_request_field_group_get_fields(group); |
635 for (itf = purple_request_group_get_fields(group); |
| 636 itf != NULL; |
636 itf != NULL; |
| 637 itf = g_list_next(itf)) |
637 itf = g_list_next(itf)) |
| 638 { |
638 { |
| 639 PurpleRequestField *field = itf->data; |
639 PurpleRequestField *field = itf->data; |
| 640 const char *old_label; |
640 const char *old_label; |