modules/*: Use g_list_free_full() convenience function

This commit is contained in:
Javier Jardón 2012-01-03 02:22:10 +01:00
parent 24360a8076
commit 6ad6f719c6
2 changed files with 2 additions and 4 deletions

View File

@ -184,8 +184,7 @@ pixbuf_rc_style_finalize (GObject *object)
{
PixbufRcStyle *rc_style = PIXBUF_RC_STYLE (object);
g_list_foreach (rc_style->img_list, (GFunc) theme_image_unref, NULL);
g_list_free (rc_style->img_list);
g_list_free_full (rc_style->img_list, theme_image_unref);
G_OBJECT_CLASS (parent_class)->finalize (object);
}

View File

@ -2108,8 +2108,7 @@ cups_request_printer_list_cb (GtkPrintBackendCups *cups_backend,
as inactive if it is in the list, emitting a printer_removed signal */
if (removed_printer_checklist != NULL)
{
g_list_foreach (removed_printer_checklist, (GFunc) mark_printer_inactive, backend);
g_list_free (removed_printer_checklist);
g_list_free_full (removed_printer_checklist, (GDestroyNotify) mark_printer_inactive);
list_has_changed = TRUE;
}