| 287 |
287 |
| 288 /* Update the data of the fields. Pidgin does this differently. Instead of |
288 /* Update the data of the fields. Pidgin does this differently. Instead of |
| 289 * updating the fields at the end like here, it updates the appropriate field |
289 * updating the fields at the end like here, it updates the appropriate field |
| 290 * instantly whenever a change is made. That allows it to make sure the |
290 * instantly whenever a change is made. That allows it to make sure the |
| 291 * 'required' fields are entered before the user can hit OK. It's not the case |
291 * 'required' fields are entered before the user can hit OK. It's not the case |
| 292 * here, althought it can be done. */ |
292 * here, although it can be done. */ |
| 293 for (list = purple_request_fields_get_groups(fields); list; list = list->next) |
293 for (list = purple_request_fields_get_groups(fields); list; list = list->next) |
| 294 { |
294 { |
| 295 PurpleRequestFieldGroup *group = list->data; |
295 PurpleRequestFieldGroup *group = list->data; |
| 296 GList *fields = purple_request_field_group_get_fields(group); |
296 GList *fields = purple_request_field_group_get_fields(group); |
| 297 |
297 |