diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-01-13 04:05:35 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-01-15 22:43:40 +0800 |
commit | d545bdb78cc302db6f3b4bd82dc3570fd5561949 (patch) | |
tree | 039d870fe122981e706c58ec20effe9e756c65b4 /addressbook/gui/contact-editor | |
parent | 720b43ba4d86bbf2a2f4f4f6d3624bf87bd1cf69 (diff) | |
download | gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar.gz gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar.bz2 gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar.lz gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar.xz gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.tar.zst gsoc2013-evolution-d545bdb78cc302db6f3b4bd82dc3570fd5561949.zip |
Avoid deprecated libedataserver APIs.
I forgot to include this in 3.7.4, but no matter.
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index ef0700baed..b168b79985 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -4174,17 +4174,15 @@ e_contact_editor_dispose (GObject *object) e_contact_editor->file_selector = NULL; } - if (e_contact_editor->writable_fields) { - e_client_util_free_string_slist ( - e_contact_editor->writable_fields); - e_contact_editor->writable_fields = NULL; - } + g_slist_free_full ( + e_contact_editor->writable_fields, + (GDestroyNotify) g_free); + e_contact_editor->writable_fields = NULL; - if (e_contact_editor->required_fields) { - e_client_util_free_string_slist ( - e_contact_editor->required_fields); - e_contact_editor->required_fields = NULL; - } + g_slist_free_full ( + e_contact_editor->required_fields, + (GDestroyNotify) g_free); + e_contact_editor->required_fields = NULL; if (e_contact_editor->contact) { g_object_unref (e_contact_editor->contact); @@ -4260,7 +4258,7 @@ supported_fields_cb (GObject *source_object, g_object_set (ce, "writable_fields", fields, NULL); - e_client_util_free_string_slist (fields); + g_slist_free_full (fields, (GDestroyNotify) g_free); g_free (prop_value); eab_editor_show (EAB_EDITOR (ce)); @@ -4305,7 +4303,7 @@ required_fields_cb (GObject *source_object, g_object_set (ce, "required_fields", fields, NULL); - e_client_util_free_string_slist (fields); + g_slist_free_full (fields, (GDestroyNotify) g_free); g_free (prop_value); } @@ -4499,21 +4497,22 @@ e_contact_editor_set_property (GObject *object, break; } case PROP_WRITABLE_FIELDS: - if (editor->writable_fields) - e_client_util_free_string_slist (editor->writable_fields); - - editor->writable_fields = - e_client_util_copy_string_slist ( - NULL, g_value_get_pointer (value)); + g_slist_free_full ( + editor->writable_fields, + (GDestroyNotify) g_free); + editor->writable_fields = g_slist_copy_deep ( + g_value_get_pointer (value), + (GCopyFunc) g_strdup, NULL); sensitize_all (editor); break; case PROP_REQUIRED_FIELDS: - if (editor->required_fields) - e_client_util_free_string_slist (editor->required_fields); - editor->required_fields = - e_client_util_copy_string_slist ( - NULL, g_value_get_pointer (value)); + g_slist_free_full ( + editor->required_fields, + (GDestroyNotify) g_free); + editor->required_fields = g_slist_copy_deep ( + g_value_get_pointer (value), + (GCopyFunc) g_strdup, NULL); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); |