aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/addressbook/e-book-shell-view-actions.c8
-rw-r--r--modules/vcard-inline/e-mail-parser-vcard-inline.c6
2 files changed, 8 insertions, 6 deletions
diff --git a/modules/addressbook/e-book-shell-view-actions.c b/modules/addressbook/e-book-shell-view-actions.c
index 01064f2da6..cbe2ef4e32 100644
--- a/modules/addressbook/e-book-shell-view-actions.c
+++ b/modules/addressbook/e-book-shell-view-actions.c
@@ -412,7 +412,7 @@ action_address_book_save_as_cb (GtkAction *action,
g_object_unref (file);
exit:
- e_client_util_free_object_slist (list);
+ g_slist_free_full (list, (GDestroyNotify) g_object_unref);
}
static void
@@ -506,7 +506,7 @@ action_contact_forward_cb (GtkAction *action,
eab_send_as_attachment (shell, list);
- e_client_util_free_object_slist (list);
+ g_slist_free_full (list, (GDestroyNotify) g_object_unref);
}
static void
@@ -708,7 +708,7 @@ action_contact_save_as_cb (GtkAction *action,
g_object_unref (file);
exit:
- e_client_util_free_object_slist (list);
+ g_slist_free_full (list, (GDestroyNotify) g_object_unref);
}
static void
@@ -747,7 +747,7 @@ action_contact_send_message_cb (GtkAction *action,
eab_send_as_to (shell, list);
- e_client_util_free_object_slist (list);
+ g_slist_free_full (list, (GDestroyNotify) g_object_unref);
}
static void
diff --git a/modules/vcard-inline/e-mail-parser-vcard-inline.c b/modules/vcard-inline/e-mail-parser-vcard-inline.c
index 44032d4376..b871351d0a 100644
--- a/modules/vcard-inline/e-mail-parser-vcard-inline.c
+++ b/modules/vcard-inline/e-mail-parser-vcard-inline.c
@@ -127,7 +127,7 @@ client_loaded_cb (ESource *source,
g_object_unref (client);
exit:
- e_client_util_free_object_slist (contact_list);
+ g_slist_free_full (contact_list, (GDestroyNotify) g_object_unref);
}
static void
@@ -168,7 +168,9 @@ save_vcard_cb (WebKitDOMEventTarget *button,
g_return_if_fail (source != NULL);
- contact_list = e_client_util_copy_object_slist (NULL, vcard_part->contact_list);
+ contact_list = g_slist_copy_deep (
+ vcard_part->contact_list,
+ (GCopyFunc) g_object_ref, NULL);
e_client_utils_open_new (
source, E_CLIENT_SOURCE_TYPE_CONTACTS,